diff --git a/play.pokemonshowdown.com/src/panel-chat.tsx b/play.pokemonshowdown.com/src/panel-chat.tsx index 34a7fe11a..482fcdf74 100644 --- a/play.pokemonshowdown.com/src/panel-chat.tsx +++ b/play.pokemonshowdown.com/src/panel-chat.tsx @@ -131,6 +131,9 @@ export class ChatRoom extends PSRoom { const cutOffExactLine = this.lastMessage ? '|' + this.lastMessage?.join('|') : ''; let reconnectMessage = '|raw|
You reconnected.
'; for (let i = 0; i < lines.length; i++) { + if (lines[i].startsWith('|users|')) { + this.add(lines[i]); + } if (lines[i] === cutOffExactLine) { cutOffStart = i + 1; } else if (lines[i].startsWith(`|c:|`)) {