* Sanguine Indulgence - fixed rollback error on play, fixed card text (#6643);

This commit is contained in:
Oleg Agafonov 2020-07-25 17:26:10 +04:00
parent 857d888b76
commit 32b7c592c8
3 changed files with 10 additions and 8 deletions

View file

@ -1,8 +1,8 @@
package mage.abilities.condition.common;
import mage.abilities.Ability;
import mage.constants.ComparisonType;
import mage.abilities.condition.IntCompareCondition;
import mage.constants.ComparisonType;
import mage.game.Game;
import mage.watchers.common.PlayerGainedLifeWatcher;
@ -27,6 +27,6 @@ public class YouGainedLifeCondition extends IntCompareCondition {
@Override
public String toString() {
return String.format("if you gained %s or more life this turn ", value + 1);
return String.format("if you gained %s or more life this turn", value + 1);
}
}