From e4d8823662d5ae75bb6e7e45f765dced2eeadc89 Mon Sep 17 00:00:00 2001 From: Fabian Dill <fabian.dill@web.de> Date: Sun, 14 Feb 2021 05:53:11 +0100 Subject: [PATCH] fix missing {choice} from default bottle_vendor_choice was never found as it gets removed as part of "unwanted text" --- Text.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Text.py b/Text.py index 496a2099..460d78e5 100644 --- a/Text.py +++ b/Text.py @@ -1725,7 +1725,7 @@ class TextTable(object): text['game_race_boy_already_won'] = CompressedTextMapper.convert("You already have your prize, dingus!") # D0 text['game_race_boy_sneaky'] = CompressedTextMapper.convert("Thought you could sneak in, eh?") - text['bottle_vendor_choice'] = CompressedTextMapper.convert("I gots bottles.\nYous gots 100 rupees?\n ≥ I want\n no way!") + text['bottle_vendor_choice'] = CompressedTextMapper.convert("I gots bottles.\nYous gots 100 rupees?\n ≥ I want\n no way!\n{CHOICE}") text['bottle_vendor_get'] = CompressedTextMapper.convert("Nice! Hold it up son! Show the world what you got!") text['bottle_vendor_no'] = CompressedTextMapper.convert("Fine! I didn't want your money anyway.") text['bottle_vendor_already_collected'] = CompressedTextMapper.convert("Dude! You already have it.")