From 712be2f5a4cbb2620a6cd26334be83b398dc7b5b Mon Sep 17 00:00:00 2001 From: jendave Date: Sat, 6 Aug 2011 05:43:34 +0000 Subject: [PATCH] - 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. --- src/forge/GameActionUtil.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/forge/GameActionUtil.java b/src/forge/GameActionUtil.java index 8a1da79cde5..cad33af3c41 100644 --- a/src/forge/GameActionUtil.java +++ b/src/forge/GameActionUtil.java @@ -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;