From 49981ea36f5b37325cc42f82ac34dde3e241ed57 Mon Sep 17 00:00:00 2001 From: Tor Andersson Date: Fri, 1 Sep 2023 21:40:06 +0200 Subject: Fix bug with Warrior Monks and Garrison. --- rules.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rules.js b/rules.js index 04f6c67..91273ed 100644 --- a/rules.js +++ b/rules.js @@ -9109,7 +9109,7 @@ function remove_serf(lord) { } function use_warrior_monks(lord, type) { - if (type === KNIGHTS) { + if (type === KNIGHTS && lord !== GARRISON) { let bit = 1 << lord if (game.battle.warrior_monks & bit) { game.battle.warrior_monks ^= bit -- cgit v1.2.3