mirror of
https://github.com/correl/mage.git
synced 2025-01-13 19:11:33 +00:00
* Burning Earth - Fixed that the ability was triggered by basic lands instead of non basic lands.
This commit is contained in:
parent
bb52fbb8b5
commit
88cd002210
1 changed files with 1 additions and 1 deletions
|
@ -84,7 +84,7 @@ class BurningEarthTriggeredAbility extends TriggeredAbilityImpl<BurningEarthTrig
|
|||
}
|
||||
if (permanent != null
|
||||
&& permanent.getCardType().contains(CardType.LAND)
|
||||
&& permanent.getSupertype().contains("Basic")) {
|
||||
&& !permanent.getSupertype().contains("Basic")) {
|
||||
getEffects().get(0).setTargetPointer(new FixedTarget(permanent.getControllerId()));
|
||||
return true;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue