mirror of
https://github.com/correl/mage.git
synced 2024-11-15 19:19:33 +00:00
Fix DiesCreatureTriggeredAbility tooltip text
This commit is contained in:
parent
41ba4c9540
commit
503c041976
1 changed files with 2 additions and 2 deletions
|
@ -23,12 +23,12 @@ public class DiesCreatureTriggeredAbility extends TriggeredAbilityImpl {
|
||||||
}
|
}
|
||||||
|
|
||||||
public DiesCreatureTriggeredAbility(Effect effect, boolean optional, boolean another) {
|
public DiesCreatureTriggeredAbility(Effect effect, boolean optional, boolean another) {
|
||||||
this(effect, optional, new FilterCreaturePermanent("another creature"));
|
this(effect, optional, new FilterCreaturePermanent(optional ? "another creature" : "a creature"));
|
||||||
filter.add(new AnotherPredicate());
|
filter.add(new AnotherPredicate());
|
||||||
}
|
}
|
||||||
|
|
||||||
public DiesCreatureTriggeredAbility(Effect effect, boolean optional, boolean another, boolean setTargetPointer) {
|
public DiesCreatureTriggeredAbility(Effect effect, boolean optional, boolean another, boolean setTargetPointer) {
|
||||||
this(effect, optional, new FilterCreaturePermanent("another creature"));
|
this(effect, optional, new FilterCreaturePermanent(optional ? "another creature" : "a creature"));
|
||||||
filter.add(new AnotherPredicate());
|
filter.add(new AnotherPredicate());
|
||||||
this.setTargetPointer = setTargetPointer;
|
this.setTargetPointer = setTargetPointer;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue