diff options
Diffstat (limited to 'rules.ts')
-rw-r--r-- | rules.ts | 9 |
1 files changed, 6 insertions, 3 deletions
@@ -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 } |