- Auras that use "K:enPump:0/0" will no longer display "Enchanted creature gets 0/0." in the card detail panel.

This commit is contained in:
jendave
2011-08-06 15:21:41 +00:00
parent 6b911a4515
commit 5c8672cb4f

View File

@@ -1783,7 +1783,9 @@ public class CardFactoryUtil {
}//resolve() }//resolve()
};//enchant ability };//enchant ability
enchant.setBeforePayMana(CardFactoryUtil.input_targetCreature(enchant)); enchant.setBeforePayMana(CardFactoryUtil.input_targetCreature(enchant));
enchant.setDescription(spellDescription[0]); if (! spellDescription[0].equals("Enchanted creature gets 0/0.")) {
enchant.setDescription(spellDescription[0]);
}
enchant.setStackDescription(stackDescription[0]); enchant.setStackDescription(stackDescription[0]);
return enchant; return enchant;
@@ -1977,7 +1979,9 @@ public class CardFactoryUtil {
}//resolve() }//resolve()
};//enchant ability };//enchant ability
enchant.setBeforePayMana(CardFactoryUtil.input_targetCreature(enchant)); enchant.setBeforePayMana(CardFactoryUtil.input_targetCreature(enchant));
enchant.setDescription(spellDescription[0]); if (! spellDescription[0].equals("Enchanted creature gets 0/0.")) {
enchant.setDescription(spellDescription[0]);
}
enchant.setStackDescription(stackDescription[0]); enchant.setStackDescription(stackDescription[0]);
return enchant; return enchant;