- Looks like combat phases are counted from 0 up? (fixes Finest Hour and possibly other cards that trigger "at first combat phase").

This commit is contained in:
Agetian
2016-10-11 16:30:17 +00:00
parent 0f4351952d
commit 4213e1269d

View File

@@ -855,7 +855,7 @@ public class PhaseHandler implements java.io.Serializable {
} }
public final boolean isFirstCombat() { public final boolean isFirstCombat() {
return (nCombatsThisTurn == 1); return (nCombatsThisTurn == 0);
} }
public final boolean isFirstUpkeep() { public final boolean isFirstUpkeep() {