forked from External/mage
* Allow to addd hint texts to stack abilities. Swicthed to html text format for text box of stack abilites.
This commit is contained in:
parent
f409f56c05
commit
84370ee5ab
11 changed files with 64 additions and 46 deletions
|
|
@ -55,7 +55,7 @@ public class GameView implements Serializable {
|
|||
private final PhaseStep step;
|
||||
private final UUID activePlayerId;
|
||||
private String activePlayerName = "";
|
||||
private String priorityPlayerName;
|
||||
private final String priorityPlayerName;
|
||||
private final int turn;
|
||||
private boolean special = false;
|
||||
private final boolean isPlayer; // false = watching user
|
||||
|
|
@ -138,7 +138,7 @@ public class GameView implements Serializable {
|
|||
// can happen if a player times out while ability is on the stack
|
||||
LOGGER.debug("Stack Object for stack ability not found: " + stackObject.getStackAbility().getRule());
|
||||
}
|
||||
} else {
|
||||
} else if (stackObject != null) {
|
||||
LOGGER.fatal("Unknown type of StackObject: " + stackObject.getName() + ' ' + stackObject.toString() + ' ' + stackObject.getClass().toString());
|
||||
}
|
||||
//stackOrder.add(stackObject.getId());
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue