fixed Unleash Fury tripling power rather than doubling

This commit is contained in:
Evan Kranzler 2020-06-15 22:15:14 -04:00
parent 2f211dfe3b
commit 3f4f0bba8c

View file

@ -60,7 +60,7 @@ class UnleashFuryEffect extends OneShotEffect {
return false;
}
game.addEffect(new BoostTargetEffect(
2 * permanent.getPower().getValue(), 0, Duration.EndOfTurn
permanent.getPower().getValue(), 0, Duration.EndOfTurn
), source);
return true;
}