Fix Krark, the Thumbless (#7175)

This commit is contained in:
weirddan455 2020-11-07 17:06:52 -06:00 committed by GitHub
parent 6521b2e3a6
commit 0b2199b3ef
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -82,6 +82,6 @@ class KrarkTheThumblessEffect extends OneShotEffect {
game.getStack().remove(spell, game); game.getStack().remove(spell, game);
return true; return true;
} }
return game.getSpell(spell.getId()) == null && player.moveCards(spell, Zone.HAND, source, game); return game.getSpell(spell.getId()) != null && player.moveCards(spell, Zone.HAND, source, game);
} }
} }