From b8708e007f7d4a266cc83945ef5c84003c7ed620 Mon Sep 17 00:00:00 2001 From: DazedAnon Date: Sat, 9 May 2026 14:48:27 -0500 Subject: [PATCH] Fixes --- data/CommonEvents.json | 6 +++--- data/Map002.json | 2 +- data/Map101.json | 4 ++-- js/rmmz_windows.js | 4 ++-- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/data/CommonEvents.json b/data/CommonEvents.json index 821dac2..71db885 100644 --- a/data/CommonEvents.json +++ b/data/CommonEvents.json @@ -274668,7 +274668,7 @@ "code": 401, "indent": 0, "parameters": [ - "We'd only just met in front of the Guild. I ran into \\N[21] before I even had a\nchance to talk to her." + "We'd only just met in front of the Guild. We ran into \\N[21] before I even had a\nchance to talk to her." ] }, { @@ -274704,7 +274704,7 @@ "code": 401, "indent": 0, "parameters": [ - "Figures she'd have the muscle, being a Swordsman and all." + "Figures she'd have the muscle, being a Swordswoman and all." ] }, { @@ -274845,7 +274845,7 @@ "code": 401, "indent": 0, "parameters": [ - "Aww, no fair~. I want to be friends with Big Sis too." + "Aww, no fair~. I want you to be friends with Big Sis too." ] }, { diff --git a/data/Map002.json b/data/Map002.json index e407697..1c01655 100644 --- a/data/Map002.json +++ b/data/Map002.json @@ -66796,7 +66796,7 @@ "code": 401, "indent": 1, "parameters": [ - "Your practice partner...?" + "My practice partner...?" ] }, { diff --git a/data/Map101.json b/data/Map101.json index e72d4bd..d79ebd9 100644 --- a/data/Map101.json +++ b/data/Map101.json @@ -41882,7 +41882,7 @@ "code": 401, "indent": 0, "parameters": [ - "Uhehe... so cute... you're so cute..." + "Uhehe... so cute... I'm so cute..." ] }, { @@ -43538,7 +43538,7 @@ "code": 401, "indent": 0, "parameters": [ - "\\{Gustav ― you mean Gustav Kreutz!? The Marshal of this country, and Aegis No. I!?" + "\\{Gustav ― you mean Gustav Kreutz!?\nThe Marshal of this country, and Aegis No. I!?" ] }, { diff --git a/js/rmmz_windows.js b/js/rmmz_windows.js index ed1b670..da54aad 100644 --- a/js/rmmz_windows.js +++ b/js/rmmz_windows.js @@ -404,13 +404,13 @@ Window_Base.prototype.processDrawIcon = function(iconIndex, textState) { Window_Base.prototype.makeFontBigger = function() { if (this.contents.fontSize <= 96) { - this.contents.fontSize += 12; + this.contents.fontSize += 6; } }; Window_Base.prototype.makeFontSmaller = function() { if (this.contents.fontSize >= 24) { - this.contents.fontSize -= 12; + this.contents.fontSize -= 6; } };