diff options
author | Tor Andersson <tor@ccxvii.net> | 2024-09-25 17:21:53 +0200 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2024-09-25 17:21:53 +0200 |
commit | c142bc2777dec3ede8617df416bb4cd83b4525cf (patch) | |
tree | ca549a8d06719c57e89233420357e90214529ff6 | |
parent | 4b09e63391a7f43967b8c8bfb9f22457e185d938 (diff) | |
download | wilderness-war-c142bc2777dec3ede8617df416bb4cd83b4525cf.tar.gz |
fix typo in prompt "Howitz(v)ers"
-rw-r--r-- | rules.js | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -5926,7 +5926,7 @@ function goto_siege(space) { } states.siege_coehorns_attacker = { - inactive: "to play Coehorns & Howitzvers", + inactive: "to play Coehorns & Howitzers", prompt() { if (player.hand.includes(COEHORNS)) { view.prompt = `Siege at ${space_name(game.siege_where)}. You may play "Coehorns & Howitzers".` @@ -5955,7 +5955,7 @@ function end_siege_coehorns_attacker() { } states.siege_coehorns_defender = { - inactive: "to play Coehorns & Howitzvers", + inactive: "to play Coehorns & Howitzers", prompt() { if (player.hand.includes(COEHORNS)) { view.prompt = `Siege at ${space_name(game.siege_where)}. You may play "Coehorns & Howitzers".` |