mirror of
https://github.com/correl/mage.git
synced 2024-12-26 03:00:11 +00:00
Fix Krark, the Thumbless (#7175)
This commit is contained in:
parent
6521b2e3a6
commit
0b2199b3ef
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue