- Fixed the Akroma's Memorial bug. Akroma's Memorial was giving "Protection from Black" rather than "Protection from black" and the code requires that the color be lowercase.

This commit is contained in:
jendave
2011-08-06 05:43:34 +00:00
parent 4e979bd740
commit 712be2f5a4

View File

@@ -10012,8 +10012,8 @@ public class GameActionUtil {
String keyword3 = "Vigilance";
String keyword4 = "Trample";
String keyword5 = "Haste";
String keyword6 = "Protection from Black";
String keyword7 = "Protection from Red";
String keyword6 = "Protection from black";
String keyword7 = "Protection from red";
CardList list = gloriousAnthemList;
Card c;