[VOW] Wolf Strike - Fixed wrong boost value

This commit is contained in:
Daniel Bomar 2021-11-08 01:59:47 -06:00
parent 0ff2dfc4d7
commit d5d90b7b2d
No known key found for this signature in database
GPG key ID: C86C8658F4023918

View file

@ -62,7 +62,7 @@ class WolfStikeEffect extends OneShotEffect {
@Override @Override
public boolean apply(Game game, Ability source) { public boolean apply(Game game, Ability source) {
if (game.checkDayNight(false)) { if (game.checkDayNight(false)) {
BoostTargetEffect effect = new BoostTargetEffect(2, 2, Duration.EndOfTurn); BoostTargetEffect effect = new BoostTargetEffect(2, 0, Duration.EndOfTurn);
game.addEffect(effect, source); game.addEffect(effect, source);
return true; return true;
} }