mirror of
https://github.com/magefree/mage.git
synced 2025-12-25 13:02:06 -08:00
* Sanguine Indulgence - fixed rollback error on play, fixed card text (#6643);
This commit is contained in:
parent
857d888b76
commit
32b7c592c8
3 changed files with 10 additions and 8 deletions
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue