From 790bb0fe77399acd9b03910aac9106b1215244dd Mon Sep 17 00:00:00 2001 From: DazedAnon Date: Sun, 5 May 2024 01:24:54 -0500 Subject: [PATCH] Fix some mistakes --- www/data/CommonEvents.json | 8 ++++---- www/data/Map050.json | 4 ++-- www/data/Map078.json | 2 +- www/js/plugins/DTextPicture.js | 2 +- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/www/data/CommonEvents.json b/www/data/CommonEvents.json index 2a341e6..755b0a6 100644 --- a/www/data/CommonEvents.json +++ b/www/data/CommonEvents.json @@ -77622,7 +77622,7 @@ "code": 401, "indent": 0, "parameters": [ - "Squish...\\C[27]\\C[27]♥\\C[0]\\C[0]squish...\\C[27]\\C[27]♥\\C[0]\\\nC[0]" + "Squish...\\C[27]\\C[27]♥\\C[0]\\C[0]squish...\\C[27]\\C[27]♥\\C[0]" ] }, { @@ -77692,7 +77692,7 @@ "code": 401, "indent": 0, "parameters": [ - "Squish squish...\\C[27]\\C[27]♥\\C[0]\\C[0]squish\nsquish...\\C[27]\\C[27]♥\\C[0]\\C[0]" + "Squish squish...\\C[27]\\C[27]♥\\C[0]squish\nsquish...\\C[27]\\C[27]♥\\C[0]\\C[0]" ] }, { @@ -93759,7 +93759,7 @@ "code": 401, "indent": 0, "parameters": [ - "\\n\"It's my right to touch my [RB[possessions,things]] whenever\nI want.\"" + "\\n\"It's my right to touch my possessions whenever\nI want.\"" ] }, { @@ -99418,7 +99418,7 @@ "code": 401, "indent": 0, "parameters": [ - "\\n\"Thanks to you, Celica-chan, this place has really\nbrightened up. After all, the staff should be girls.\"" + "\\n\"Thanks to you and Celica-chan, this place has really\nbrightened up. After all, the staff should be girls.\"" ] }, { diff --git a/www/data/Map050.json b/www/data/Map050.json index dfa15c0..8bcfcb9 100644 --- a/www/data/Map050.json +++ b/www/data/Map050.json @@ -8996,7 +8996,7 @@ "code": 401, "indent": 0, "parameters": [ - "\\n(For some reason, she's staring at the products with great\nenthusiasm.)" + "\\n(For some reason, he's staring at the products with great\nenthusiasm.)" ] }, { @@ -9013,7 +9013,7 @@ "code": 401, "indent": 0, "parameters": [ - "\\n(And yet, she was staring at me when I entered the store...)" + "\\n(And yet, he was staring at me when I entered the store...)" ] }, { diff --git a/www/data/Map078.json b/www/data/Map078.json index 41014b7..19ca47d 100644 --- a/www/data/Map078.json +++ b/www/data/Map078.json @@ -2259,7 +2259,7 @@ "code": 401, "indent": 0, "parameters": [ - "\\n\"(This guy, he must be getting screwed by Mr. Crux a lot.)\"" + "\\n\"(This girl, she must be getting screwed by Mr. Crux a lot.)\"" ] }, { diff --git a/www/js/plugins/DTextPicture.js b/www/js/plugins/DTextPicture.js index 52904d5..9ddc47f 100644 --- a/www/js/plugins/DTextPicture.js +++ b/www/js/plugins/DTextPicture.js @@ -250,7 +250,7 @@ var convertEscapeCharacters = function (text) { if (text === undefined || text === null) text = ""; var window = SceneManager.getHiddenWindow(); - return window ? window.convertEscapeCharacters(text) : text; + return window ? window.convertEscapeCharacters(text.replace(/_/g, ' ')) : text.replace(/_/g, ' '); }; var getUsingVariables = function (text) {