- Added Barbarian Guides

This commit is contained in:
swordshine
2014-12-19 03:58:36 +00:00
parent de1c726b3c
commit fb91d352e7
3 changed files with 16 additions and 1 deletions

View File

@@ -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);
}