Fix a bug in the cheat system for manual testing.

This commit is contained in:
Samuel Sandeen 2016-09-15 19:20:04 -04:00
parent 91b4e024fb
commit 377a0edec9

View file

@ -132,6 +132,7 @@ public class SystemUtil {
card.putOntoBattlefield(game, Zone.EXILED, null, player.getId());
} else if (zone.equals(Zone.LIBRARY)) {
card.setZone(Zone.LIBRARY, game);
game.getExile().getPermanentExile().remove(card);
player.getLibrary().putOnTop(card, game);
} else {
card.moveToZone(zone, null, game, false);