From 18cf96b3eb1ee4958f8a67e1627334b6c63cbf96 Mon Sep 17 00:00:00 2001 From: Tor Andersson Date: Wed, 18 Jan 2023 14:07:08 +0100 Subject: Disallow Pay when lord service is at end of calendar. --- rules.js | 2 ++ 1 file changed, 2 insertions(+) (limited to 'rules.js') diff --git a/rules.js b/rules.js index 4a325a2..89cf606 100644 --- a/rules.js +++ b/rules.js @@ -9176,6 +9176,8 @@ function end_feed() { // === LEVY & CAMPAIGN: PAY === function can_pay_lord(lord) { + if (get_lord_service(lord) > 16) + return false if (game.active === RUSSIANS) { if (game.pieces.veche_coin > 0 && is_lord_unbesieged(lord)) return true -- cgit v1.2.3