mirror of
https://github.com/magefree/mage.git
synced 2025-12-28 22:42:03 -08:00
fix a bug in Sharae of Numbing Depths (#13176)
* fix a bug in Sharae of Numbing Depths which caused the ability to trigger when owner's permanents got tapped. * Fix Sharae of Numbing Depths
This commit is contained in:
parent
5928c84026
commit
f4eeda743c
1 changed files with 2 additions and 3 deletions
|
|
@ -83,7 +83,6 @@ class SharaeOfNumbingDepthsTriggeredAbility extends TriggeredAbilityImpl {
|
|||
public boolean checkTrigger(GameEvent event, Game game) {
|
||||
Permanent permanent = game.getPermanent(event.getTargetId());
|
||||
return permanent != null
|
||||
&& StaticFilters.FILTER_OPPONENTS_PERMANENT_CREATURE.match(permanent, game)
|
||||
&& isControlledBy(event.getPlayerId());
|
||||
&& StaticFilters.FILTER_OPPONENTS_PERMANENT_CREATURE.match(permanent, event.getPlayerId(), this, game);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue