- Fixed a minor text bug in Wasteland / Stripmine.

This commit is contained in:
jendave
2011-08-06 03:54:27 +00:00
parent 015a97a872
commit 18b5839ba7

View File

@@ -741,7 +741,6 @@ class CardFactory_Lands {
//*************** START *********** START ************************** //*************** START *********** START **************************
else if(cardName.equals("Wasteland") || cardName.equals("Strip Mine")) { else if(cardName.equals("Wasteland") || cardName.equals("Strip Mine")) {
//tap sacrifice //tap sacrifice
final Ability_Tap ability = new Ability_Tap(card, "0") { final Ability_Tap ability = new Ability_Tap(card, "0") {
@@ -814,7 +813,7 @@ class CardFactory_Lands {
}); });
Object o = AllZone.Display.getChoice("Choose a " Object o = AllZone.Display.getChoice("Choose a "
+ (card.getName().equals("Wasteland")? "nonbasic":"") + "land to destroy", + (card.getName().equals("Wasteland")? "nonbasic":"") + " land to destroy",
list.toArray()); list.toArray());
ability.setTargetCard((Card) o); ability.setTargetCard((Card) o);
@@ -830,7 +829,7 @@ class CardFactory_Lands {
}; };
card.addSpellAbility(ability); card.addSpellAbility(ability);
ability.setDescription("Tap, Sacrifice " + card.getName() + ": Destroy target " ability.setDescription("Tap, Sacrifice " + card.getName() + ": Destroy target "
+ (card.getName().equals("Wasteland")? "nonbasic":"") + "land."); + (card.getName().equals("Wasteland")? "nonbasic":"") + " land.");
ability.setBeforePayMana(runtime); ability.setBeforePayMana(runtime);
}//*************** END ************ END ************************** }//*************** END ************ END **************************