From 72c244b43399e866d5c04a30c8d351d4d58f8dbb Mon Sep 17 00:00:00 2001 From: thibautbus <310327033+thibautbus@users.noreply.github.com> Date: Mon, 17 Aug 2026 21:38:04 +0200 Subject: [PATCH] Route the museum 1F ticket clerk's remaining lines through Strings --- data/scripts/story2.lua | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/data/scripts/story2.lua b/data/scripts/story2.lua index 094bc011..2ab2a715 100644 --- a/data/scripts/story2.lua +++ b/data/scripts/story2.lua @@ -733,7 +733,8 @@ local function museumClerk(game, ow, done, onDecline) local t = game.data.text or {} if game.save.flags.EVENT_BOUGHT_MUSEUM_TICKET then game.stack:push(TextBox.new(game, - "Take your time,\nand enjoy it all!", done)) + t._Museum1FScientist1TakePlentyOfTimeText + or "Take your time,\nand enjoy it all!", done)) return end -- scripts/Museum1F.asm:72 @@ -751,10 +752,12 @@ local function museumClerk(game, ow, done, onDecline) { money = money })) elseif yes then game.stack:push(TextBox.new(game, - "You don't have\nenough money.", onDecline or done, { money = money })) + t._Museum1FScientist1DontHaveEnoughMoneyText + or "You don't have\nenough money.", onDecline or done, { money = money })) else game.stack:push(TextBox.new(game, - "Come again!", onDecline or done, { money = money })) + t._Museum1FScientist1ComeAgainText + or "Come again!", onDecline or done, { money = money })) end end })) end