mirror of
https://github.com/magefree/mage.git
synced 2025-12-24 20:41:58 -08:00
GUI: fixed wrong feedback panel status in computer games (related to #11189)
This commit is contained in:
parent
598aaa7632
commit
abda1fb53b
5 changed files with 17 additions and 17 deletions
|
|
@ -81,7 +81,7 @@ public class CallbackClientImpl implements CallbackClient {
|
|||
}
|
||||
|
||||
// keep track of synced messages only
|
||||
if (!callback.getMethod().getType().canProcessInAnyOrder()) {
|
||||
if (!callback.getMethod().getType().canComeInAnyOrder()) {
|
||||
this.lastMessages.put(callback.getMethod().getType(), callback.getMessageId());
|
||||
}
|
||||
}
|
||||
|
|
@ -372,7 +372,7 @@ public class CallbackClientImpl implements CallbackClient {
|
|||
break;
|
||||
}
|
||||
|
||||
case GAME_INFORM: {
|
||||
case GAME_UPDATE_AND_INFORM: {
|
||||
GameClientMessage message = (GameClientMessage) callback.getData();
|
||||
GamePanel panel = MageFrame.getGame(callback.getObjectId());
|
||||
if (panel != null) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue