diff options
author | Tor Andersson <tor@ccxvii.net> | 2024-05-06 11:28:04 +0200 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2024-05-06 11:28:04 +0200 |
commit | 2a2962208a4064bbe0e102ce020f22522f5c9a33 (patch) | |
tree | e82a0f658918859e14e029f0ed56d72c6e34c4d1 /rules.ts | |
parent | 110cf9f77f91da4885ff52e5365d88e065b47059 (diff) | |
download | plantagenet-2a2962208a4064bbe0e102ce020f22522f5c9a33.tar.gz |
log tax collectors
Diffstat (limited to 'rules.ts')
-rw-r--r-- | rules.ts | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -4658,7 +4658,7 @@ states.tax = { locale(loc) { game.where = loc if (loc === get_lord_seat(game.command)) { - log("Tax at S" + game.where + ".") + log("Tax S" + game.where + ".") do_tax(game.command, game.where, 1) end_tax() } else { @@ -12000,6 +12000,7 @@ states.tax_collectors_lord = { push_undo() game.where = loc if (loc === get_lord_seat(game.who)) { + log("Tax S" + game.where + ".") do_tax(game.who, game.where, 2) end_tax_collectors_lord() } else { |