summaryrefslogtreecommitdiff
path: root/rules.js
diff options
context:
space:
mode:
Diffstat (limited to 'rules.js')
-rw-r--r--rules.js9
1 files changed, 6 insertions, 3 deletions
diff --git a/rules.js b/rules.js
index 8ffefc2..1b235b7 100644
--- a/rules.js
+++ b/rules.js
@@ -6693,9 +6693,12 @@ function get_modified_protection(lord, force) {
protection = 2;
}
}
- 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;
}
function is_yeomen_of_the_crown_triggered(lord, type) {