[MH2] fixed Garth One-Eye permanent spells not becoming tokens

This commit is contained in:
Evan Kranzler 2021-06-10 18:42:02 -04:00
parent c8154bf018
commit bd92ced539
2 changed files with 12 additions and 6 deletions

View file

@ -1177,6 +1177,9 @@ public abstract class PlayerImpl implements Player, Serializable {
logger.error("Got no spell from stack. ability: " + ability.getRule());
return false;
}
if (card.isCopy()) {
spell.setCopy(true, null);
}
// Update the zcc to the stack
ability.setSourceObjectZoneChangeCounter(game.getState().getZoneChangeCounter(ability.getSourceId()));