From 71acb4ba7c5e970c9a8fa4d9409c0d6ba57fd75d Mon Sep 17 00:00:00 2001 From: Tor Andersson Date: Thu, 17 Jun 2021 17:45:20 +0200 Subject: tripoli: Only allow Happy Hunting if here are surviving corsairs. --- rules.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rules.js b/rules.js index c8c9c59..3abac4b 100644 --- a/rules.js +++ b/rules.js @@ -2569,7 +2569,7 @@ function can_play_merchant_ship_converted(merchants) { } function can_play_happy_hunting() { - return (game.where == TRIPOLI) && is_not_removed(HAPPY_HUNTING); + return (game.where == TRIPOLI) && (count_tripolitan_corsairs(TRIPOLI) > 0) && is_not_removed(HAPPY_HUNTING); } function can_play_the_guns_of_tripoli() { -- cgit v1.2.3