- Fixed Lingering Mirage, now when cast the choose dialog will display the text for both the cycling ability and the enchant land ability.

This commit is contained in:
jendave
2011-08-06 20:17:50 +00:00
parent 82d843a207
commit 442d68bf8a
2 changed files with 9 additions and 1 deletions

View File

@@ -1,7 +1,10 @@
Name:Lingering Mirage
ManaCost:1 U
Types:Enchantment Aura
Text:Enchanted land is an Island.
Text:no text
#
# Need to set the spell description in CardFactory_Auras for Lingering Mirage since it has cycling
#
K:Enchant land
K:Cycling:2
SVar:Rarity:Common

View File

@@ -583,6 +583,11 @@ class CardFactory_Auras {
card.clearSpellAbility();
card.addSpellAbility(spell);
// Need to set the spell description for Lingering Mirage since it has cycling ability.
if (card.getName().equals("Lingering Mirage")) {
spell.setDescription("Enchanted land is an Island.");
}
Command onEnchant = new Command() {
private static final long serialVersionUID = 3528675112863241126L;