From 9a234e81dbaa7bc742f30484a093ff464831e1a0 Mon Sep 17 00:00:00 2001 From: Mischa Untaga <99098079+MischaU8@users.noreply.github.com> Date: Mon, 30 Oct 2023 16:10:53 +0100 Subject: fix typo --- rules.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rules.js b/rules.js index f300312..e8e5c18 100644 --- a/rules.js +++ b/rules.js @@ -169,7 +169,7 @@ function raise_gov_psl(amount) { throw Error(`ASSERT: amount > 0, but was ${amount}`) // can trigger victory game.gov_psl += amount - logi(`Goverment PSL +${amount}`) + logi(`Government PSL +${amount}`) if (game.gov_psl > MAX_PSL) { let excess_psl = game.gov_psl - MAX_PSL log(`Government PSL exceeds ${MAX_PSL}`) @@ -188,7 +188,7 @@ function lower_fln_psl(amount) { function lower_gov_psl(amount, indent=true) { if (amount <= 0) throw Error(`ASSERT: amount > 0, but was ${amount}`) - let log_msg = `Goverment PSL -${amount}` + let log_msg = `Government PSL -${amount}` if (indent) { logi(log_msg) } else { -- cgit v1.2.3