Fixed Heavy Arbalest. Fixed FilterCreaturePermanent.

This commit is contained in:
magenoxx 2011-08-03 20:20:15 +04:00
parent ea33149b6f
commit 8d404138c3
2 changed files with 5 additions and 8 deletions

View file

@ -111,7 +111,7 @@ class SkipUntapSourceEffect extends ReplacementEffectImpl<SkipUntapSourceEffect>
public boolean applies(GameEvent event, Ability source, Game game) {
if (game.getTurn().getStepType() == PhaseStep.UNTAP
&& event.getType() == EventType.UNTAP
&& event.getTargetId().equals(source.getId())) {
&& event.getTargetId().equals(source.getSourceId())) {
return true;
}
return false;