mirror of
https://github.com/correl/mage.git
synced 2024-12-29 03:00:15 +00:00
[VOW] Wolf Strike - Fixed wrong boost value
This commit is contained in:
parent
0ff2dfc4d7
commit
d5d90b7b2d
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue