mirror of
https://github.com/correl/mage.git
synced 2024-11-15 19:19:33 +00:00
fixed Brightling pump ability
This commit is contained in:
parent
ee83018d93
commit
c9f6a3811d
1 changed files with 2 additions and 2 deletions
|
@ -1,4 +1,3 @@
|
|||
|
||||
package mage.cards.b;
|
||||
|
||||
import java.util.UUID;
|
||||
|
@ -107,6 +106,7 @@ class BrightlingEffect extends OneShotEffect {
|
|||
return false;
|
||||
}
|
||||
int boost = (player.chooseUse(outcome, "Give +1/-1 or -1/+1?", null, "+1/-1", "-1/+1", source, game) ? 1 : -1);
|
||||
return new BoostSourceEffect(boost, -1 * boost, Duration.EndOfTurn).apply(game, source);
|
||||
game.addEffect(new BoostSourceEffect(boost, -1 * boost, Duration.EndOfTurn), source);
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue