mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-20 12:48:00 +00:00
- Added Barbarian Guides
This commit is contained in:
@@ -548,7 +548,9 @@ public class CombatUtil {
|
||||
walkTypes.add("Land.Snow");
|
||||
} else if (keyword.endsWith("walk")) {
|
||||
final String landtype = keyword.replace("walk", "");
|
||||
if (CardType.isALandType(landtype)) {
|
||||
if (landtype.startsWith("Snow ")) {
|
||||
walkTypes.add(landtype.substring(5) + ".Snow");
|
||||
} else if (CardType.isALandType(landtype)) {
|
||||
if (!walkTypes.contains(landtype)) {
|
||||
walkTypes.add(landtype);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user