diff options
author | Tor Andersson <tor@ccxvii.net> | 2025-03-22 16:37:02 +0100 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2025-03-22 16:46:10 +0100 |
commit | 88a448a219b35138af7d494c74b27bbd8335acea (patch) | |
tree | 9a084ae5225dab372ee9cf23a006ca9a5edd6499 /play.js | |
parent | f83ef7dae8b8934aa4bf536757439b3f1f7f55b0 (diff) | |
download | land-and-freedom-88a448a219b35138af7d494c74b27bbd8335acea.tar.gz |
Log turning off bonus even when it's already off.
Diffstat (limited to 'play.js')
-rw-r--r-- | play.js | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -642,7 +642,7 @@ function on_log(text) { // eslint-disable-line no-unused-vars text = text.replace(/\bC(\d+)\b/g, sub_card) text = text.replace(/\bM(\d+)\b/g, sub_medallion) - text = text.replace(/\bT[acmf]\b/g, sub_token) + text = text.replace(/\bT\d\b/g, sub_token) text = text.replace(/\bHP\b/g, "Hero points") // text = text.replace(/\bHP\b/g, "\u272b") // text = text.replace(/\bHP\b/g, sub_token) |