diff options
author | Tor Andersson <tor@ccxvii.net> | 2024-04-17 11:06:34 +0200 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2024-04-17 11:16:18 +0200 |
commit | f166efce30d20ff58dfc0914488c86022c0ad8bc (patch) | |
tree | d2de450cb5543a044cba92bd37cd263909c02c8d /rules.js | |
parent | 10079ff176639f36a2c16caa98e2eefcf2fadae4 (diff) | |
download | plantagenet-f166efce30d20ff58dfc0914488c86022c0ad8bc.tar.gz |
Fix tax fix more fix.
Diffstat (limited to 'rules.js')
-rw-r--r-- | rules.js | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -3893,7 +3893,7 @@ states.tax = { prompt() { view.prompt = "Tax: Select the location to tax." if (game.where === NOWHERE) { - for (let loc of search_tax([], get_lord_locale(game.command))) + for (let loc of search_tax([], get_lord_locale(game.command), game.command)) gen_action_locale(loc) } else { view.prompt = `Tax: Attempting to tax ${data.locales[game.where].name}. ` |