- Changed "Return Up To" to "UpTo" in both Urborg Uprising and to spReturnTgt.

This commit is contained in:
jendave
2011-08-06 08:57:01 +00:00
parent 91f7e87378
commit aab152403a
2 changed files with 2 additions and 2 deletions

View File

@@ -2,7 +2,7 @@ Name:Urborg Uprising
ManaCost:4 B ManaCost:4 B
Types:Sorcery Types:Sorcery
Text:Return up to two target creature cards from your graveyard to your hand. (NOTE: This spell is rather buggy and should not be used at this time.) Text:Return up to two target creature cards from your graveyard to your hand. (NOTE: This spell is rather buggy and should not be used at this time.)
K:spReturnTgt:2/Return Up To:Creature:Hand K:spReturnTgt:2/UpTo:Creature:Hand
K:Draw a card. K:Draw a card.
SVar:Rarity:None SVar:Rarity:None
SVar:Picture:http://www.wizards.com/global/images/magic/general/urborg_uprising.jpg SVar:Picture:http://www.wizards.com/global/images/magic/general/urborg_uprising.jpg

View File

@@ -3661,7 +3661,7 @@ public class CardFactory implements NewConstants {
String np[] = k[1].split("/"); String np[] = k[1].split("/");
final int numCardsToReturn = Integer.parseInt(np[0]); final int numCardsToReturn = Integer.parseInt(np[0]);
if (np.length > 1) { if (np.length > 1) {
if (np[1].equals("Return Up To")) { if (np[1].equals("UpTo")) {
returnUpTo[0] = true; returnUpTo[0] = true;
} }
} }