Slay the Spire: Correct tool tip for `heart_run` to match actual behaviour (#1236)

This commit is contained in:
Zach Parks 2022-11-12 20:52:36 -06:00 committed by GitHub
parent adcee639a2
commit 5139475068
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -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
}
}