mirror of
https://github.com/correl/mage.git
synced 2025-01-12 19:25:44 +00:00
* Hardened Scales - Fixed that the counter was only added if at least one counter was added originally.
This commit is contained in:
parent
2338ccf05f
commit
913e7f8719
1 changed files with 3 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue