aboutsummaryrefslogtreecommitdiff
path: root/webAO/packets/handlers
diff options
context:
space:
mode:
authormastyra <Surotail@yahoo.com>2025-12-28 22:14:06 -0500
committerGitHub <noreply@github.com>2025-12-28 22:14:06 -0500
commitaafc22946bef367277c930eb6ffe14d18d98745b (patch)
treeb942c0e17bdd3fa4479d5f6b937cda05b23406f1 /webAO/packets/handlers
parent51da2617291016abe7eda82bda6eb453ee88b592 (diff)
Match client with how missing data is formatted
See https://github.com/AttorneyOnline/AO2-Client/blob/54afceec66744e758595e6a4e9bd861523f5b016/src/widgets/playerlistwidget.cpp#L207
Diffstat (limited to 'webAO/packets/handlers')
-rw-r--r--webAO/packets/handlers/handlePR.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/webAO/packets/handlers/handlePR.ts b/webAO/packets/handlers/handlePR.ts
index 51822d7..aeb3969 100644
--- a/webAO/packets/handlers/handlePR.ts
+++ b/webAO/packets/handlers/handlePR.ts
@@ -12,7 +12,7 @@ function addPlayer(playerID: number) {
const img = document.createElement("img");
imgCell.appendChild(img);
- const name = document.createTextNode("Unknown");
+ const name = document.createTextNode("No Data");
const charNameCell = playerRow.insertCell(1);
charNameCell.appendChild(name);