Merge branch 'master' into 'master'

Locked chat rooms the player can join have an unlocked icon.

See merge request 
This commit is contained in:
NeverNewer 2025-04-15 01:26:47 +00:00
commit f03e44b149

View file

@ -533,7 +533,7 @@ function ChatSearchNormalDraw() {
icons.push("Icons/Private.png");
}
if (ChatRoomDataIsLocked(room)) {
icons.push("Icons/CheckLocked.png");
icons.push(room?.CanJoin ? "Icons/CheckUnlocked.png" : "Icons/CheckLocked.png");
}
if (hasMap) {
icons.push(`Icons/MapType${room.MapType}.png`);