1
0
Fork 0
mirror of https://github.com/correl/mage.git synced 2025-03-30 01:03:57 -09:00

fixed Neyith, the Dire Hunt doubling toughness ()

This commit is contained in:
Evan Kranzler 2020-06-30 22:47:43 -04:00
parent 73026b57b1
commit 82347be782

View file

@ -141,7 +141,7 @@ class NeyithOfTheDireHuntEffect extends OneShotEffect {
return false;
}
int power = permanent.getPower().getValue();
game.addEffect(new BoostTargetEffect(power, power, Duration.EndOfTurn), source);
game.addEffect(new BoostTargetEffect(power, 0, Duration.EndOfTurn), source);
game.addEffect(new MustBeBlockedByAtLeastOneTargetEffect(Duration.EndOfCombat), source);
return true;
}