Fixed couple of cards

This commit is contained in:
marcin.sciesinski
2019-09-11 10:24:36 -07:00
parent 267bbeafce
commit 3600f6e63a
2 changed files with 5 additions and 1 deletions

View File

@@ -465,6 +465,10 @@
"type": "modifier",
"modifier": {
"type": "canttakemorewoundsthan",
"condition": {
"type": "location",
"filter": "or(mountain,underground)"
},
"phase": "skirmish",
"amount": 1
}

View File

@@ -12,6 +12,6 @@ public class MoveCountMinimum implements RequirementProducer {
FieldUtils.validateAllowedFields(object, "amount");
final int count = FieldUtils.getInteger(object.get("amount"), "amount");
return (actionContext) -> actionContext.getGame().getGameState().getMoveCount() <= count;
return (actionContext) -> actionContext.getGame().getGameState().getMoveCount() >= count;
}
}