From 2e07f5f7c2f4bab9a264f0c68c7c59dd9a36911e Mon Sep 17 00:00:00 2001 From: magenoxx Date: Tue, 19 Mar 2013 11:28:54 +0400 Subject: [PATCH] Fixed Issue#113:Optical effect that the creature has been controlled by the active player continuously since the turn began is removed too late --- Mage/src/mage/game/GameImpl.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Mage/src/mage/game/GameImpl.java b/Mage/src/mage/game/GameImpl.java index 0f8968d367b..0794b07f64b 100644 --- a/Mage/src/mage/game/GameImpl.java +++ b/Mage/src/mage/game/GameImpl.java @@ -727,6 +727,7 @@ public abstract class GameImpl> implements Game, Serializa else { state.getPlayerList().setCurrent(this.getPriorityPlayerId()); } + fireUpdatePlayersEvent(); Player player; while (!isPaused() && !isGameOver()) { try { @@ -1332,6 +1333,7 @@ public abstract class GameImpl> implements Game, Serializa if (simulation) { return; } + logger.trace("fireUpdatePlayersEvent"); tableEventSource.fireTableEvent(EventType.UPDATE, null, this); }