mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-18 03:38:01 +00:00
- 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:
@@ -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;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user