- Fixed Paradox Haze.

This commit is contained in:
Sloth
2014-10-05 11:56:54 +00:00
parent 08c886cd96
commit 6ac44f1618

View File

@@ -950,7 +950,7 @@ public class PhaseHandler implements java.io.Serializable, IGameStateObject {
* @return a boolean. * @return a boolean.
*/ */
public final boolean isFirstUpkeep() { public final boolean isFirstUpkeep() {
return (this.nUpkeepsThisTurn == 1); return (this.nUpkeepsThisTurn == 0);
} }
/** /**
@@ -961,7 +961,7 @@ public class PhaseHandler implements java.io.Serializable, IGameStateObject {
* @return a boolean. * @return a boolean.
*/ */
public final boolean isFirstUpkeepThisGame() { public final boolean isFirstUpkeepThisGame() {
return (this.nUpkeepsThisGame == 1); return (this.nUpkeepsThisGame == 0);
} }
/** /**