- Don't clear echo related variables for creatures that ETB during the upkeep

This commit is contained in:
Sol
2016-06-12 21:33:56 +00:00
parent c6ad6d30d0
commit ad1595ed34

View File

@@ -419,7 +419,7 @@ public class PhaseHandler implements java.io.Serializable {
c.getDamageHistory().setNotAttackedSinceLastUpkeepOf(playerTurn);
c.getDamageHistory().setNotBlockedSinceLastUpkeepOf(playerTurn);
c.getDamageHistory().setNotBeenBlockedSinceLastUpkeepOf(playerTurn);
if (playerTurn.equals(c.getController())) {
if (playerTurn.equals(c.getController()) && c.getTurnInZone() < game.getPhaseHandler().getTurn()) {
c.setCameUnderControlSinceLastUpkeep(false);
}
}