mirror of
https://gitea.wildfiregames.com/0ad/0ad
synced 2026-07-04 05:55:47 -07:00
Fix oversight in 5f8f7bae20
Spotted and reviewed by elexis This was SVN commit r19248.
This commit is contained in:
parent
d9d1f1bbeb
commit
52d5c62f61
1 changed files with 1 additions and 1 deletions
|
|
@ -737,7 +737,7 @@ function handleReadyMessage(message)
|
|||
if (!g_IsController)
|
||||
return;
|
||||
|
||||
g_PlayerAssignments[message.guid].status = +message.status == 1;
|
||||
g_PlayerAssignments[message.guid].status = message.status;
|
||||
updateReadyUI();
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue