Overflow check

This commit is contained in:
Zzooouhh 2017-12-22 22:28:52 +01:00 committed by GitHub
parent ed490950cf
commit d9c6e53877
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -105,7 +105,7 @@ class PyromancersSwathReplacementEffect 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(), 2));
return false; return false;
} }