Revert "Fix token created when removed before trigger resolves"

This reverts commit e33644ecf3.
This commit is contained in:
Bug Hunter
2021-01-27 21:36:23 +00:00
committed by Hans Mackowiak
parent 22fd1ac274
commit 0f28cbda4f
5 changed files with 10 additions and 9 deletions

View File

@@ -1359,8 +1359,8 @@ public class PlayerControllerHuman extends PlayerController implements IGameCont
}
@Override
public void playChosenSpellAbility(final SpellAbility chosenSa) {
HumanPlay.playSpellAbility(this, player, chosenSa);
public boolean playChosenSpellAbility(final SpellAbility chosenSa) {
return HumanPlay.playSpellAbility(this, player, chosenSa);
}
@Override