Fix some mistakes
This commit is contained in:
parent
c01a68f86f
commit
790bb0fe77
4 changed files with 8 additions and 8 deletions
|
|
@ -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<Duke>\"It's my right to touch my [RB[possessions,things]] whenever\nI want.\""
|
||||
"\\n<Duke>\"It's my right to touch my possessions whenever\nI want.\""
|
||||
]
|
||||
},
|
||||
{
|
||||
|
|
@ -99418,7 +99418,7 @@
|
|||
"code": 401,
|
||||
"indent": 0,
|
||||
"parameters": [
|
||||
"\\n<Regular Customer>\"Thanks to you, Celica-chan, this place has really\nbrightened up. After all, the staff should be girls.\""
|
||||
"\\n<Regular Customer>\"Thanks to you and Celica-chan, this place has really\nbrightened up. After all, the staff should be girls.\""
|
||||
]
|
||||
},
|
||||
{
|
||||
|
|
|
|||
|
|
@ -8996,7 +8996,7 @@
|
|||
"code": 401,
|
||||
"indent": 0,
|
||||
"parameters": [
|
||||
"\\n<Celica>(For some reason, she's staring at the products with great\nenthusiasm.)"
|
||||
"\\n<Celica>(For some reason, he's staring at the products with great\nenthusiasm.)"
|
||||
]
|
||||
},
|
||||
{
|
||||
|
|
@ -9013,7 +9013,7 @@
|
|||
"code": 401,
|
||||
"indent": 0,
|
||||
"parameters": [
|
||||
"\\n<Celica>(And yet, she was staring at me when I entered the store...)"
|
||||
"\\n<Celica>(And yet, he was staring at me when I entered the store...)"
|
||||
]
|
||||
},
|
||||
{
|
||||
|
|
|
|||
|
|
@ -2259,7 +2259,7 @@
|
|||
"code": 401,
|
||||
"indent": 0,
|
||||
"parameters": [
|
||||
"\\n<Clerk>\"(This guy, he must be getting screwed by Mr. Crux a lot.)\""
|
||||
"\\n<Clerk>\"(This girl, she must be getting screwed by Mr. Crux a lot.)\""
|
||||
]
|
||||
},
|
||||
{
|
||||
|
|
|
|||
|
|
@ -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) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue