Skip to content

Commit

Permalink
Merge 'Clearer hint text for bridge condition' (#2105)
Browse files Browse the repository at this point in the history
  • Loading branch information
cjohnson57 committed Nov 29, 2023
2 parents 85ff26c + 01e802f commit b821966
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
7 changes: 5 additions & 2 deletions Hints.py
Original file line number Diff line number Diff line change
Expand Up @@ -1636,7 +1636,7 @@ def build_boss_string(reward: str, color: str, world: World) -> str:


def build_bridge_reqs_string(world: World) -> str:
string = "\x13\x12" # Light Arrow Icon
string = "\x13\x3C" # Master Sword icon
if world.settings.bridge == 'open':
string += "The awakened ones will have #already created a bridge# to the castle where the evil dwells."
else:
Expand All @@ -1651,7 +1651,10 @@ def build_bridge_reqs_string(world: World) -> str:
'hearts': (world.settings.bridge_hearts, "#heart#", "#hearts#"),
}[world.settings.bridge]
item_req_string = f'{count} {singular if count == 1 else plural}'
string += f"The awakened ones will await for the Hero to collect {item_req_string}."
if world.settings.clearer_hints:
string += f"The rainbow bridge will be built once the Hero collects {item_req_string}."
else:
string += f"The awakened ones will await for the Hero to collect {item_req_string}."
return str(GossipText(string, ['Green'], prefix=''))


Expand Down
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,10 @@ issue. You should always Hard Reset to avoid this issue entirely.

### Dev

#### New Features
* **Hints**
* The `Clearer Hints` option now provides clearer hints for the rainbow bridge text on the altar in the Temple of Time.

### 8.0

#### New Features
Expand Down
2 changes: 1 addition & 1 deletion version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = '8.0.5'
__version__ = '8.0.6'

# This is a supplemental version number for branches based off of main dev.
supplementary_version = 0
Expand Down

0 comments on commit b821966

Please sign in to comment.