forked from External/mage
GUI: improved game logs, added mouse cursor and hover style over active card names like browsers
This commit is contained in:
parent
9c6fc4187f
commit
b695f8906c
10 changed files with 93 additions and 19 deletions
|
|
@ -187,7 +187,7 @@ public class CallbackClientImpl implements CallbackClient {
|
|||
case REPLAY_INIT: {
|
||||
GamePanel panel = MageFrame.getGame(callback.getObjectId());
|
||||
if (panel != null) {
|
||||
panel.init(callback.getMessageId(), (GameView) callback.getData());
|
||||
panel.init(callback.getMessageId(), (GameView) callback.getData(), true);
|
||||
}
|
||||
break;
|
||||
}
|
||||
|
|
@ -212,7 +212,7 @@ public class CallbackClientImpl implements CallbackClient {
|
|||
GamePanel panel = MageFrame.getGame(callback.getObjectId());
|
||||
if (panel != null) {
|
||||
appendJsonEvent("GAME_INIT", callback.getObjectId(), callback.getData());
|
||||
panel.init(callback.getMessageId(), (GameView) callback.getData());
|
||||
panel.init(callback.getMessageId(), (GameView) callback.getData(), true);
|
||||
}
|
||||
break;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue