mirror of
https://github.com/correl/mage.git
synced 2024-11-15 11:09:30 +00:00
fix
This commit is contained in:
parent
6989130212
commit
f6271d5650
1 changed files with 2 additions and 2 deletions
|
@ -93,10 +93,10 @@ class FrightfulDelusionEffect extends OneShotEffect<FrightfulDelusionEffect> {
|
|||
Player player = game.getPlayer(spell.getControllerId());
|
||||
if (player != null) {
|
||||
cost.clearPaid();
|
||||
game.getPlayer(spell.getControllerId()).discard(
|
||||
1, source, game);
|
||||
if (!cost.pay(source, game, spell.getControllerId(),
|
||||
spell.getControllerId(), false)) {
|
||||
game.getPlayer(spell.getControllerId()).discard(
|
||||
1, source, game);
|
||||
return game.getStack().counter(source.getFirstTarget(),
|
||||
source.getSourceId(), game);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue