* Hardened Scales - Fixed that the counter was only added if at least one counter was added originally.

This commit is contained in:
LevelX2 2016-12-21 16:17:18 +01:00 committed by GitHub
parent 2338ccf05f
commit 913e7f8719

View file

@ -81,7 +81,9 @@ class HardenedScalesEffect extends ReplacementEffectImpl {
@Override
public boolean replaceEvent(GameEvent event, Ability source, Game game) {
int amount = event.getAmount();
event.setAmount(amount + 1);
if (amount >= 1) {
event.setAmount(amount + 1);
}
return false;
}