* Fossil Find - Fixed card movement handling.

This commit is contained in:
LevelX2 2016-01-06 22:11:09 +01:00
parent e367fe40b1
commit e9f58d20a5
12 changed files with 410 additions and 24 deletions

View file

@ -530,6 +530,12 @@ public class GameState implements Serializable, Copyable<GameState> {
this.gameOver = true;
}
// 608.2e
public void processAction(Game game) {
game.getState().handleSimultaneousEvent(game);
applyEffects(game);
}
public void applyEffects(Game game) {
game.resetShortLivingLKI();
for (Player player : players.values()) {