summaryrefslogtreecommitdiff
path: root/rules.ts
diff options
context:
space:
mode:
Diffstat (limited to 'rules.ts')
-rw-r--r--rules.ts9
1 files changed, 6 insertions, 3 deletions
diff --git a/rules.ts b/rules.ts
index 3f246a9..4f38744 100644
--- a/rules.ts
+++ b/rules.ts
@@ -7862,9 +7862,12 @@ function get_modified_protection(lord: Lord, force: Force) {
}
}
- if (lord_has_capability(lord, AOW_LANCASTER_CHEVALIERS))
- if (force === MEN_AT_ARMS)
- protection --
+ if (lord_has_capability(lord, AOW_LANCASTER_CHEVALIERS)) {
+ if (force === MEN_AT_ARMS) {
+ if (is_missiles_step())
+ protection --
+ }
+ }
return protection
}