mirror of
https://github.com/correl/mage.git
synced 2024-12-26 03:00:11 +00:00
fixed Clear the Stage not returning a creature to hand
This commit is contained in:
parent
5ad923485c
commit
045c2f094d
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue