Skip to content

Commit

Permalink
fix a bug in Sharae of Numbing Depths which caused the ability to tri…
Browse files Browse the repository at this point in the history
…gger when owner's permanents got tapped.
  • Loading branch information
padfoothelix committed Dec 22, 2024
1 parent 5928c84 commit 3ff9822
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Mage.Sets/src/mage/cards/s/SharaeOfNumbingDepths.java
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ public boolean checkEventType(GameEvent event, Game game) {
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);
// && isControlledBy(event.getPlayerId());
}
}

0 comments on commit 3ff9822

Please sign in to comment.