diff options
author | Mischa Untaga <99098079+MischaU8@users.noreply.github.com> | 2023-10-30 16:10:53 +0100 |
---|---|---|
committer | Mischa Untaga <99098079+MischaU8@users.noreply.github.com> | 2023-10-30 16:10:53 +0100 |
commit | 9a234e81dbaa7bc742f30484a093ff464831e1a0 (patch) | |
tree | a847973bba41de9b24f207e6472aab2a9beacd67 | |
parent | f4711e39c5e25376241b2a27139980fdb359330d (diff) | |
download | algeria-9a234e81dbaa7bc742f30484a093ff464831e1a0.tar.gz |
fix typo
-rw-r--r-- | rules.js | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 { |