mirror of
https://github.com/correl/mage.git
synced 2024-12-25 03:00:15 +00:00
* Mana Drain - Fixed that the mana was in some cases provided during the wrong phase.
This commit is contained in:
parent
ec2c93d0db
commit
06d05eb56d
1 changed files with 2 additions and 2 deletions
|
@ -113,9 +113,9 @@ public class AtTheBeginOMainPhaseDelayedTriggeredAbility extends DelayedTriggere
|
|||
private boolean checkPhase(EventType eventType) {
|
||||
switch (phaseSelection) {
|
||||
case NEXT_MAIN:
|
||||
return EventType.PRECOMBAT_MAIN_PHASE_PRE.equals(eventType) || EventType.PRECOMBAT_MAIN_PHASE_POST.equals(eventType);
|
||||
return EventType.PRECOMBAT_MAIN_PHASE_PRE.equals(eventType) || EventType.POSTCOMBAT_MAIN_PHASE_PRE.equals(eventType);
|
||||
case NEXT_POSTCOMAT_MAIN:
|
||||
return EventType.PRECOMBAT_MAIN_PHASE_POST.equals(eventType);
|
||||
return EventType.POSTCOMBAT_MAIN_PHASE_PRE.equals(eventType);
|
||||
case NEXT_PRECOMBAT_MAIN:
|
||||
return EventType.PRECOMBAT_MAIN_PHASE_PRE.equals(eventType);
|
||||
default:
|
||||
|
|
Loading…
Reference in a new issue