Overflow check

This commit is contained in:
Zzooouhh 2017-12-22 22:19:59 +01:00 committed by GitHub
parent 9e45d962e9
commit a5fc384644
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -126,7 +126,7 @@ class InquisitorsFlailEffect extends ReplacementEffectImpl {
@Override
public boolean replaceEvent(GameEvent event, Ability source, Game game) {
event.setAmount(event.getAmount() * 2);
event.setAmount(game.addWithOverflowCheck(event.getAmount(), event.getAmount()));
return false;
}