From 51394750688a56cd850d15e11f4d34c59da4f289 Mon Sep 17 00:00:00 2001 From: Zach Parks Date: Sat, 12 Nov 2022 20:52:36 -0600 Subject: [PATCH] Slay the Spire: Correct tool tip for `heart_run` to match actual behaviour (#1236) --- worlds/spire/Options.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/worlds/spire/Options.py b/worlds/spire/Options.py index ffaea7ce..1711e12d 100644 --- a/worlds/spire/Options.py +++ b/worlds/spire/Options.py @@ -21,8 +21,8 @@ class Ascension(Range): class HeartRun(Toggle): - """Whether or not you will need to collect they 3 keys to unlock the final act - and beat the heart to finish the game.""" + """Whether or not you will need to collect the 3 keys and enter the final act to + complete the game. The Heart does not need to be defeated.""" display_name = "Heart Run" option_true = 1 option_false = 0 @@ -33,4 +33,4 @@ spire_options: typing.Dict[str, type(Option)] = { "character": Character, "ascension": Ascension, "heart_run": HeartRun -} \ No newline at end of file +}