mirror of
https://github.com/correl/mage.git
synced 2024-12-28 11:14:13 +00:00
Make Gruesome Encore replacement effect consistent with other similar effects
This commit is contained in:
parent
3bac561d07
commit
3a76a0c3d0
1 changed files with 2 additions and 3 deletions
|
@ -115,9 +115,8 @@ class GruesomeEncoreReplacementEffect extends ReplacementEffectImpl {
|
|||
|
||||
@Override
|
||||
public boolean replaceEvent(GameEvent event, Ability source, Game game) {
|
||||
Player player = game.getPlayer(source.getControllerId());
|
||||
Card card = game.getCard(source.getFirstTarget());
|
||||
return player != null && card != null && player.moveCards(card, Zone.EXILED, source, game);
|
||||
((ZoneChangeEvent) event).setToZone(Zone.EXILED);
|
||||
return false;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
Loading…
Reference in a new issue