forked from External/mage
Some changes related to #4893.
This commit is contained in:
parent
9919a3403d
commit
cddd81123b
37 changed files with 245 additions and 137 deletions
|
|
@ -685,7 +685,11 @@ public class GameState implements Serializable, Copyable<GameState> {
|
|||
}
|
||||
|
||||
public void setZone(UUID id, Zone zone) {
|
||||
zones.put(id, zone);
|
||||
if (zone == null) {
|
||||
zones.remove(id);
|
||||
} else {
|
||||
zones.put(id, zone);
|
||||
}
|
||||
}
|
||||
|
||||
public void addSimultaneousEvent(GameEvent event, Game game) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue