mirror of
https://github.com/correl/mage.git
synced 2025-01-12 19:25:44 +00:00
Island Sanctuary check on the ability, not the event
This commit is contained in:
parent
4546ee516b
commit
295439b0a5
1 changed files with 1 additions and 1 deletions
|
@ -81,7 +81,7 @@ class IslandSanctuaryEffect extends ReplacementEffectImpl {
|
|||
|
||||
@Override
|
||||
public boolean applies(GameEvent event, Ability source, Game game) {
|
||||
return source.isControlledBy(event.getPlayerId()) && game.getTurn().getStepType() == PhaseStep.DRAW && game.getActivePlayerId().equals(event.getPlayerId());
|
||||
return source.isControlledBy(event.getPlayerId()) && game.getTurn().getStepType() == PhaseStep.DRAW && game.getActivePlayerId().equals(source.getControllerId());
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
Loading…
Reference in a new issue