- Enchant Creature Curse will now be displayed without Curse in the game.

This commit is contained in:
jendave
2011-08-06 13:07:02 +00:00
parent 86fc88af79
commit 52724a57d4

View File

@@ -823,6 +823,10 @@ public class Card extends MyObservable {
} else if (keyword.get(i).toString().contains("Protection:")) {
String k[] = keyword.get(i).split(":");
sbLong.append(k[2]).append("\r\n");
} else if (keyword.get(i).startsWith("Enchant")) {
String k = keyword.get(i);
k = k.replace("Curse", "");
sbLong.append(k).append("\r\n");
} else if (keyword.get(i).endsWith(".")) {
sbLong.append(keyword.get(i).toString()).append("\r\n");
} else if (keyword.get(i).contains("At the beginning of your upkeep, ")