TL
This commit is contained in:
parent
4e10b2eabf
commit
54b279af98
6 changed files with 3956 additions and 8498 deletions
File diff suppressed because it is too large
Load diff
|
|
@ -3413,7 +3413,7 @@
|
||||||
"code": 401,
|
"code": 401,
|
||||||
"indent": 1,
|
"indent": 1,
|
||||||
"parameters": [
|
"parameters": [
|
||||||
"\"...I wonder... if I break you, \\. \\.\\. what will become of Anna?\""
|
"\"...I wonder... if I break you, \\. \\. \\. what will become of\nAnna?\""
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -6529,7 +6529,7 @@
|
||||||
"code": 401,
|
"code": 401,
|
||||||
"indent": 0,
|
"indent": 0,
|
||||||
"parameters": [
|
"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!\""
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -4563,7 +4563,7 @@
|
||||||
"code": 401,
|
"code": 401,
|
||||||
"indent": 0,
|
"indent": 0,
|
||||||
"parameters": [
|
"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.\""
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -105,7 +105,7 @@ var $plugins = [{
|
||||||
"parameters": {
|
"parameters": {
|
||||||
"logWindowX": "0",
|
"logWindowX": "0",
|
||||||
"logWindowY": "350",
|
"logWindowY": "350",
|
||||||
"logWindowWidth": "640",
|
"logWindowWidth": "940",
|
||||||
"lines": "6",
|
"lines": "6",
|
||||||
"lineHeight": "27",
|
"lineHeight": "27",
|
||||||
"padding": "10",
|
"padding": "10",
|
||||||
|
|
|
||||||
|
|
@ -245,6 +245,7 @@
|
||||||
|
|
||||||
var convertEscapeCharacters = function(text) {
|
var convertEscapeCharacters = function(text) {
|
||||||
if (text === undefined || text === null) text = '';
|
if (text === undefined || text === null) text = '';
|
||||||
|
text = text.replace(/_/g, ' ');
|
||||||
var window = SceneManager.getHiddenWindow();
|
var window = SceneManager.getHiddenWindow();
|
||||||
return window ? window.convertEscapeCharacters(text) : text;
|
return window ? window.convertEscapeCharacters(text) : text;
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue