mirror of
https://github.com/correl/mage.git
synced 2024-11-25 03:00:11 +00:00
Fixes Mind Maggots giving 1 counter instead of 2 (#10086)
--------- Co-authored-by: Oleg Agafonov <jaydi85@gmail.com>
This commit is contained in:
parent
5673a59f0e
commit
0a633a8318
1 changed files with 1 additions and 1 deletions
|
@ -72,7 +72,7 @@ class MindMaggotsEffect extends OneShotEffect {
|
|||
}
|
||||
TargetCard target = new TargetDiscard(0, Integer.MAX_VALUE, StaticFilters.FILTER_CARD_CREATURE, controller.getId());
|
||||
controller.choose(outcome, controller.getHand(), target, game);
|
||||
int counters = controller.discard(new CardsImpl(target.getTargets()), false, source, game).size();
|
||||
int counters = controller.discard(new CardsImpl(target.getTargets()), false, source, game).size() * 2;
|
||||
Permanent permanent = game.getPermanent(source.getSourceId());
|
||||
if (permanent == null || counters < 1) {
|
||||
return true;
|
||||
|
|
Loading…
Reference in a new issue