Skip to content

Commit

Permalink
fixed Ugin the Ineffable token triggering card return on etb and not ltb
Browse files Browse the repository at this point in the history
  • Loading branch information
theelk801 committed Apr 23, 2019
1 parent a602e2d commit 7ea7cf6
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions Mage.Sets/src/mage/cards/u/UginTheIneffable.java
Original file line number Diff line number Diff line change
Expand Up @@ -142,13 +142,13 @@ public boolean checkTrigger(GameEvent event, Game game) {
ZoneChangeEvent zEvent = ((ZoneChangeEvent) event);
if (!(zEvent.getFromZone() == Zone.BATTLEFIELD)
|| !tokenRef.refersTo(zEvent.getTarget(), game)) {
this.getEffects().clear();
Effect effect = new ReturnToHandTargetEffect();
effect.setTargetPointer(new FixedTarget(cardRef));
this.addEffect(effect);
return true;
return false;
}
return false;
this.getEffects().clear();
Effect effect = new ReturnToHandTargetEffect();
effect.setTargetPointer(new FixedTarget(cardRef));
this.addEffect(effect);
return true;
}

@Override
Expand Down

0 comments on commit 7ea7cf6

Please sign in to comment.