mirror of
https://github.com/correl/mage.git
synced 2024-12-25 11:11:16 +00:00
Fix Mistbind Clique's land tap ability not triggering.
This commit is contained in:
parent
11f34cb163
commit
a02913eb6e
1 changed files with 7 additions and 0 deletions
|
@ -29,11 +29,13 @@ package mage.sets.lorwyn;
|
|||
|
||||
import java.util.List;
|
||||
import java.util.UUID;
|
||||
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.Outcome;
|
||||
import mage.constants.Rarity;
|
||||
import mage.constants.Zone;
|
||||
import mage.MageInt;
|
||||
import mage.MageObject;
|
||||
import mage.abilities.Ability;
|
||||
import mage.abilities.common.ZoneChangeTriggeredAbility;
|
||||
import mage.abilities.effects.OneShotEffect;
|
||||
|
@ -99,6 +101,11 @@ class MistbindCliqueAbility extends ZoneChangeTriggeredAbility {
|
|||
super(ability);
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean isInUseableZone(Game game, MageObject source, GameEvent event) {
|
||||
return game.getState().getZone(getSourceId()) == Zone.BATTLEFIELD;
|
||||
}
|
||||
|
||||
@Override
|
||||
public MistbindCliqueAbility copy() {
|
||||
return new MistbindCliqueAbility(this);
|
||||
|
|
Loading…
Reference in a new issue