mirror of
https://github.com/correl/mage.git
synced 2024-11-15 19:19:33 +00:00
* Wildwood Scourge - Fixed the missing check for "non Hydra" creatures.
This commit is contained in:
parent
8e1d7c3ffb
commit
8deebbc6d3
1 changed files with 2 additions and 1 deletions
|
@ -76,6 +76,7 @@ class EnduringScalelordTriggeredAbility extends TriggeredAbilityImpl {
|
||||||
return (permanent != null
|
return (permanent != null
|
||||||
&& !event.getTargetId().equals(this.getSourceId())
|
&& !event.getTargetId().equals(this.getSourceId())
|
||||||
&& permanent.isCreature()
|
&& permanent.isCreature()
|
||||||
|
&& !permanent.getSubtype(game).contains(SubType.HYDRA)
|
||||||
&& permanent.isControlledBy(this.getControllerId()));
|
&& permanent.isControlledBy(this.getControllerId()));
|
||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
|
@ -83,6 +84,6 @@ class EnduringScalelordTriggeredAbility extends TriggeredAbilityImpl {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public String getRule() {
|
public String getRule() {
|
||||||
return "Whenever one or more +1/+1 counters are put on another creature you control, put a +1/+1 counter on {this}.";
|
return "Whenever one or more +1/+1 counters are put on another non-Hydra creature you control, put a +1/+1 counter on {this}.";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue