From 362441d8c33bb6519acf4e8f3c337cfa3c222f78 Mon Sep 17 00:00:00 2001
From: WishStone <WishStone@gmail.com>
Date: Sat, 19 Mar 2022 19:34:05 -0700
Subject: [PATCH 1/3] Fixed a small text display issue in gifting the Just
 Monika thermos.

---
 Monika After Story/game/zz_reactions.rpy | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Monika After Story/game/zz_reactions.rpy b/Monika After Story/game/zz_reactions.rpy
index 40239d352a..e5919925ad 100644
--- a/Monika After Story/game/zz_reactions.rpy	
+++ b/Monika After Story/game/zz_reactions.rpy	
@@ -1442,7 +1442,7 @@ label mas_thermos_mug_handler(thermos_acs, disp_name, giftname, ignore_case=True
         m 1hub "Thanks so much, [player], I can't wait to use it!"
 
     else:
-        m 1wud "Oh!{w=0.3} [mas_a_an_str(disp_name, ignore_case).capitalize()] thermos!"
+        m 1wud "Oh!{w=0.3} [mas_a_an_str(disp_name, ignore_case).title()] thermos!"
         m 1hua "Now I can bring something to drink when we go out together~"
         m 1hub "Thanks so much, [player]!"
         $ persistent._mas_given_thermos_before = True

From 2f67b02dd565858808abd152b915d4fa17b90341 Mon Sep 17 00:00:00 2001
From: WishStone <WishStone@gmail.com>
Date: Wed, 23 Mar 2022 19:54:09 -0700
Subject: [PATCH 2/3] Fixed a small text display issue in gifting the Just
 Monika thermos.

---
 Monika After Story/game/zz_reactions.rpy | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Monika After Story/game/zz_reactions.rpy b/Monika After Story/game/zz_reactions.rpy
index 40239d352a..e5919925ad 100644
--- a/Monika After Story/game/zz_reactions.rpy	
+++ b/Monika After Story/game/zz_reactions.rpy	
@@ -1442,7 +1442,7 @@ label mas_thermos_mug_handler(thermos_acs, disp_name, giftname, ignore_case=True
         m 1hub "Thanks so much, [player], I can't wait to use it!"
 
     else:
-        m 1wud "Oh!{w=0.3} [mas_a_an_str(disp_name, ignore_case).capitalize()] thermos!"
+        m 1wud "Oh!{w=0.3} [mas_a_an_str(disp_name, ignore_case).title()] thermos!"
         m 1hua "Now I can bring something to drink when we go out together~"
         m 1hub "Thanks so much, [player]!"
         $ persistent._mas_given_thermos_before = True

From 0a9e6949641539d02135e21b717649db52fea99b Mon Sep 17 00:00:00 2001
From: WishStone-Dragon <95390551+WishStone-Dragon@users.noreply.github.com>
Date: Sun, 27 Mar 2022 19:03:51 -0700
Subject: [PATCH 3/3] Removed '.title' in favor of text edit

Discovered that simply removing '.title' didn't have the expected result; as such, changed the grammar of the sentence.
---
 Monika After Story/game/zz_reactions.rpy | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Monika After Story/game/zz_reactions.rpy b/Monika After Story/game/zz_reactions.rpy
index e5919925ad..defec98826 100644
--- a/Monika After Story/game/zz_reactions.rpy	
+++ b/Monika After Story/game/zz_reactions.rpy	
@@ -1442,7 +1442,7 @@ label mas_thermos_mug_handler(thermos_acs, disp_name, giftname, ignore_case=True
         m 1hub "Thanks so much, [player], I can't wait to use it!"
 
     else:
-        m 1wud "Oh!{w=0.3} [mas_a_an_str(disp_name, ignore_case).title()] thermos!"
+        m 1wud "Oh!{w=0.3} It's [mas_a_an_str(disp_name, ignore_case)] thermos!"
         m 1hua "Now I can bring something to drink when we go out together~"
         m 1hub "Thanks so much, [player]!"
         $ persistent._mas_given_thermos_before = True