fixed Clear the Stage not returning a creature to hand

This commit is contained in:
Evan Kranzler 2019-01-14 13:38:06 -05:00
parent 5ad923485c
commit 045c2f094d

View file

@ -68,7 +68,7 @@ class ClearTheStageEffect extends OneShotEffect {
if (!FerociousCondition.instance.apply(game, source)) { if (!FerociousCondition.instance.apply(game, source)) {
return true; return true;
} }
Player player = game.getPlayer(source.getSourceId()); Player player = game.getPlayer(source.getControllerId());
if (player == null || !player.chooseUse(Outcome.Benefit, "Return a creature card from your graveyard to your hand?", source, game)) { if (player == null || !player.chooseUse(Outcome.Benefit, "Return a creature card from your graveyard to your hand?", source, game)) {
return false; return false;
} }