fixed Angelic Accord displaying the wrong amount of life gain required (fixes #4132 and #4133)

This commit is contained in:
Evan Kranzler 2017-10-25 07:24:49 -04:00
parent 2e3c916717
commit 3746fddf54

View file

@ -27,7 +27,6 @@ public class YouGainedLifeCondition extends IntCompareCondition {
@Override @Override
public String toString() { public String toString() {
return String.format("if you gained %s or more life this turn ", value); return String.format("if you gained %s or more life this turn ", value + 1);
} }
} }