From e578d83fc25b861a6932e6f1fadde1e10f933878 Mon Sep 17 00:00:00 2001 From: DazedAnon Date: Wed, 20 Nov 2024 14:07:47 -0600 Subject: [PATCH] Remove _ --- js/plugins/EventLabel.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/plugins/EventLabel.js b/js/plugins/EventLabel.js index 51fb051..c388c18 100644 --- a/js/plugins/EventLabel.js +++ b/js/plugins/EventLabel.js @@ -443,7 +443,7 @@ if (!label) { return; } - const newText = PluginManagerEx.convertEscapeCharacters(label.text); + const newText = PluginManagerEx.convertEscapeCharacters(label.text.replace(/_/g, ' ')); if (this._text !== newText || this._size !== label.size) { this._text = newText; this._size = label.size;