diff options
author | Tor Andersson <tor@ccxvii.net> | 2024-04-30 21:26:10 +0200 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2024-04-30 21:26:10 +0200 |
commit | 71dd77d97257588b5fffe1e116d9283d8b607938 (patch) | |
tree | 5570b9953c96f5da76c64ded122d7e88cf030744 | |
parent | 2a423bb8e5becc1ae921f2fee0bfa92364adba94 (diff) | |
download | plantagenet-71dd77d97257588b5fffe1e116d9283d8b607938.tar.gz |
fix typo in forbidden_levy_capabilities
-rw-r--r-- | rules.ts | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -3419,7 +3419,7 @@ function can_add_lord_capability(lord: Lord) { function forbidden_levy_capabilities(c: Card) { // Some capabilities override the forbidden levy vassals if (lord_has_capability(game.command, AOW_LANCASTER_TWO_ROSES)) { - if (c === AOW_LANCASTER_THOMAS_STANLEY || AOW_LANCASTER_MY_FATHERS_BLOOD) { + if (c === AOW_LANCASTER_THOMAS_STANLEY || c === AOW_LANCASTER_MY_FATHERS_BLOOD) { return true } } |