mirror of
https://github.com/magefree/mage.git
synced 2025-12-23 03:51:58 -08:00
* Fixed a logical bug to DiscardTargetEffect.
This commit is contained in:
parent
eb802431fa
commit
8f059ee71a
1 changed files with 1 additions and 2 deletions
|
|
@ -91,9 +91,8 @@ public class DiscardTargetEffect extends OneShotEffect {
|
||||||
if (player != null) {
|
if (player != null) {
|
||||||
player.discard(amount.calculate(game, source, this), randomDiscard, source, game);
|
player.discard(amount.calculate(game, source, this), randomDiscard, source, game);
|
||||||
}
|
}
|
||||||
return true;
|
|
||||||
}
|
}
|
||||||
return false;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue