summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMischa Untaga <99098079+MischaU8@users.noreply.github.com>2023-10-30 16:10:53 +0100
committerMischa Untaga <99098079+MischaU8@users.noreply.github.com>2023-10-30 16:10:53 +0100
commit9a234e81dbaa7bc742f30484a093ff464831e1a0 (patch)
treea847973bba41de9b24f207e6472aab2a9beacd67
parentf4711e39c5e25376241b2a27139980fdb359330d (diff)
downloadalgeria-9a234e81dbaa7bc742f30484a093ff464831e1a0.tar.gz
fix typo
-rw-r--r--rules.js4
1 files 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 {