diff --git a/res/cardsfolder/urborg_uprising.txt b/res/cardsfolder/urborg_uprising.txt index fb540314738..dbb6d8e0b1d 100644 --- a/res/cardsfolder/urborg_uprising.txt +++ b/res/cardsfolder/urborg_uprising.txt @@ -2,7 +2,7 @@ Name:Urborg Uprising ManaCost:4 B 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.) -K:spReturnTgt:2/Return Up To:Creature:Hand +K:spReturnTgt:2/UpTo:Creature:Hand K:Draw a card. SVar:Rarity:None SVar:Picture:http://www.wizards.com/global/images/magic/general/urborg_uprising.jpg diff --git a/src/forge/CardFactory.java b/src/forge/CardFactory.java index 9a331f186f2..76dc224ea08 100644 --- a/src/forge/CardFactory.java +++ b/src/forge/CardFactory.java @@ -3661,7 +3661,7 @@ public class CardFactory implements NewConstants { String np[] = k[1].split("/"); final int numCardsToReturn = Integer.parseInt(np[0]); if (np.length > 1) { - if (np[1].equals("Return Up To")) { + if (np[1].equals("UpTo")) { returnUpTo[0] = true; } }