removed call to global context for local property

This commit is contained in:
Maxmtg
2011-09-19 07:59:37 +00:00
parent 4063692309
commit 211f5db12c

View File

@@ -320,7 +320,7 @@ public class Phase extends MyObservable implements java.io.Serializable {
AllZone.getPhase().setNeedToNextPhase(true); AllZone.getPhase().setNeedToNextPhase(true);
else { else {
if (!AllZone.getPhase().isPreventCombatDamageThisTurn()) if (!isPreventCombatDamageThisTurn())
Combat.dealAssignedDamage(); Combat.dealAssignedDamage();
AllZone.getGameAction().checkStateEffects(); AllZone.getGameAction().checkStateEffects();
@@ -335,7 +335,7 @@ public class Phase extends MyObservable implements java.io.Serializable {
AllZone.getCombat().setAssignedDamage(); AllZone.getCombat().setAssignedDamage();
if (!AllZone.getPhase().isPreventCombatDamageThisTurn()) if (!isPreventCombatDamageThisTurn())
Combat.dealAssignedDamage(); Combat.dealAssignedDamage();
AllZone.getGameAction().checkStateEffects(); AllZone.getGameAction().checkStateEffects();