mirror of
https://github.com/correl/mage.git
synced 2024-12-26 11:09:27 +00:00
Fixed tooltip for IndestructibleTargetEffect
This commit is contained in:
parent
c89a4fd535
commit
9c814083a1
1 changed files with 3 additions and 2 deletions
|
@ -87,10 +87,11 @@ public class IndestructibleTargetEffect extends ReplacementEffectImpl<Indestruct
|
||||||
}
|
}
|
||||||
sb.append("target ").append(mode.getTargets().get(0).getTargetName());
|
sb.append("target ").append(mode.getTargets().get(0).getTargetName());
|
||||||
if (target.getMaxNumberOfTargets() > 1) {
|
if (target.getMaxNumberOfTargets() > 1) {
|
||||||
sb.append("s");
|
sb.append("s are indestructible");
|
||||||
|
} else {
|
||||||
|
sb.append(" is indestructible");
|
||||||
}
|
}
|
||||||
|
|
||||||
sb.append(" is indestructible");
|
|
||||||
if (Duration.EndOfTurn.equals(this.duration)) {
|
if (Duration.EndOfTurn.equals(this.duration)) {
|
||||||
sb.append(" this turn");
|
sb.append(" this turn");
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue