From f6a035947f7593baad6a9afca3b1157bfc76004a Mon Sep 17 00:00:00 2001 From: bryanthaboi Date: Thu, 13 Aug 2026 13:31:36 -0400 Subject: [PATCH] Update OverworldController.lua --- src/world/OverworldController.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/world/OverworldController.lua b/src/world/OverworldController.lua index 2b9b1a28..bfd61826 100644 --- a/src/world/OverworldController.lua +++ b/src/world/OverworldController.lua @@ -2913,7 +2913,7 @@ function OverworldState:nurseHeal(onDone, npc) local t = Game.data.text if self.map.id == "PEWTER_POKECENTER" and self.pikachuPewterSleepScene then Game.stack:push(TextBox.new(Game, - t._LooksContentText or "PIKACHU looks\ncontent.", onDone)) + t._LooksContentText or Strings("PIKACHU looks\ncontent."), onDone)) return end local bye = t._PokemonCenterFarewellText or romText(Game.data, "_PokemonCenterFarewellText", "We hope to see\nyou again!") @@ -3009,7 +3009,7 @@ function OverworldState:cableClubReceptionist(onDone) local t = Game.data.text if self.map.id == "PEWTER_POKECENTER" and self.pikachuPewterSleepScene then Game.stack:push(TextBox.new(Game, - t._LooksContentText or "PIKACHU looks\ncontent.", onDone)) + t._LooksContentText or Strings("PIKACHU looks\ncontent."), onDone)) return end local welcome = t._CableClubNPCWelcomeText or romText(Game.data, "_CableClubNPCWelcomeText", "Welcome to the\nCable Club!")