mirror of
https://github.com/correl/mage.git
synced 2025-01-13 19:11:33 +00:00
Fixed bug that tooltip text of token created by Voice of Resourgence said permanent instead of creature.
This commit is contained in:
parent
f158c40d1e
commit
58bb785754
1 changed files with 1 additions and 1 deletions
|
@ -131,7 +131,7 @@ class VoiceOfResurgenceToken extends Token {
|
|||
subtype.add("Elemental");
|
||||
power = new MageInt(0);
|
||||
toughness = new MageInt(0);
|
||||
FilterControlledPermanent filter = new FilterControlledPermanent();
|
||||
FilterControlledPermanent filter = new FilterControlledPermanent("creatures you control");
|
||||
filter.add(new CardTypePredicate(CardType.CREATURE));
|
||||
DynamicValue creaturesControlled = new PermanentsOnBattlefieldCount(filter);
|
||||
this.addAbility(new SimpleStaticAbility(Constants.Zone.BATTLEFIELD, new SetPowerToughnessSourceEffect(creaturesControlled, Constants.Duration.EndOfGame)));
|
||||
|
|
Loading…
Reference in a new issue