This commit is contained in:
dazedanon 2026-03-15 22:43:55 -05:00
parent 4e10b2eabf
commit 54b279af98
6 changed files with 3956 additions and 8498 deletions

File diff suppressed because it is too large Load diff

View file

@ -3413,7 +3413,7 @@
"code": 401,
"indent": 1,
"parameters": [
"\"...I wonder... if I break you, \\. \\.\\. what will become of Anna?\""
"\"...I wonder... if I break you, \\. \\. \\. what will become of\nAnna?\""
]
},
{

View file

@ -6529,7 +6529,7 @@
"code": 401,
"indent": 0,
"parameters": [
"\"What, Rozalie is gone already? \\. \\.\\...I haven't received any\nsuch report!\""
"\"What, Rozalie is gone already? \\. \\. \\...I haven't received any\nsuch report!\""
]
},
{

View file

@ -4563,7 +4563,7 @@
"code": 401,
"indent": 0,
"parameters": [
"[Feris] \"... \\. \\.\\.We leave tomorrow. For now, I'd like to rest\ntoday.\""
"[Feris] \"... \\. \\. \\.We leave tomorrow. For now, I'd like to rest\ntoday.\""
]
},
{

View file

@ -105,7 +105,7 @@ var $plugins = [{
"parameters": {
"logWindowX": "0",
"logWindowY": "350",
"logWindowWidth": "640",
"logWindowWidth": "940",
"lines": "6",
"lineHeight": "27",
"padding": "10",

View file

@ -245,6 +245,7 @@
var convertEscapeCharacters = function(text) {
if (text === undefined || text === null) text = '';
text = text.replace(/_/g, ' ');
var window = SceneManager.getHiddenWindow();
return window ? window.convertEscapeCharacters(text) : text;
};