Slay the Spire: Correct tool tip for `heart_run` to match actual behaviour (#1236)
This commit is contained in:
parent
adcee639a2
commit
5139475068
|
@ -21,8 +21,8 @@ class Ascension(Range):
|
||||||
|
|
||||||
|
|
||||||
class HeartRun(Toggle):
|
class HeartRun(Toggle):
|
||||||
"""Whether or not you will need to collect they 3 keys to unlock the final act
|
"""Whether or not you will need to collect the 3 keys and enter the final act to
|
||||||
and beat the heart to finish the game."""
|
complete the game. The Heart does not need to be defeated."""
|
||||||
display_name = "Heart Run"
|
display_name = "Heart Run"
|
||||||
option_true = 1
|
option_true = 1
|
||||||
option_false = 0
|
option_false = 0
|
||||||
|
@ -33,4 +33,4 @@ spire_options: typing.Dict[str, type(Option)] = {
|
||||||
"character": Character,
|
"character": Character,
|
||||||
"ascension": Ascension,
|
"ascension": Ascension,
|
||||||
"heart_run": HeartRun
|
"heart_run": HeartRun
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue