diff --git a/src/forge/Phase.java b/src/forge/Phase.java index de5ec77de4d..1b845eb7c76 100644 --- a/src/forge/Phase.java +++ b/src/forge/Phase.java @@ -598,8 +598,8 @@ public class Phase extends MyObservable public static boolean canCastSorcery(Player player) { - return ((AllZone.Phase.getPhase().equals(Constant.Phase.Main2) || (AllZone.Phase.getPhase().equals(Constant.Phase.Main1)) - && AllZone.Phase.isPlayerTurn(player)) && AllZone.Stack.size() == 0); + return AllZone.Phase.isPlayerTurn(player) && (AllZone.Phase.getPhase().equals(Constant.Phase.Main2) || + AllZone.Phase.getPhase().equals(Constant.Phase.Main1)) && AllZone.Stack.size() == 0; } public static boolean canPlayDuringCombat() {