mirror of
https://github.com/correl/mage.git
synced 2024-12-25 11:11:16 +00:00
Overflow check
This commit is contained in:
parent
6e1c177eca
commit
d0f74c9f9d
1 changed files with 1 additions and 1 deletions
|
@ -88,7 +88,7 @@ class InsultDoubleDamageEffect extends ReplacementEffectImpl {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean replaceEvent(GameEvent event, Ability source, Game game) {
|
public boolean replaceEvent(GameEvent event, Ability source, Game game) {
|
||||||
event.setAmount(event.getAmount() * 2);
|
event.setAmount(game.addWithOverflowCheck(event.getAmount(), event.getAmount()));
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue