Skip to content

Commit bc84c1c

Browse files
committed
Merge 'Enable overriding rainbow tunics' (#2582)
2 parents d70792a + 9efac07 commit bc84c1c

3 files changed

Lines changed: 6 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
* Fix a vanilla bug where the player can become unable to move when the Hookshot is pulled but fails to load.
66
* Fix a bug where the item on the `Song from Saria` location could be obtained multiple times by savewarping on the first frame after obtaining it, then returning to the location.
77
* Fix a generator failure when a dungeon reward is selected as a random starting item and the Temple of Time altar is set to hint dungeon reward locations.
8+
* Fix a bug where overriding cosmetics could not override rainbow tunics.
89

910
# 9.1
1011

Cosmetics.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -107,6 +107,10 @@ def patch_tunic_colors(rom: Rom, settings: Settings, log: CosmeticsLog, symbols:
107107
tunic_color_list = Colors.get_tunic_colors()
108108
rainbow_error = None
109109

110+
# Clear all rainbow tunic bits so that it can be overridden.
111+
if 'CFG_RAINBOW_TUNIC_ENABLED' in symbols:
112+
rom.write_byte(symbols['CFG_RAINBOW_TUNIC_ENABLED'], 0)
113+
110114
for tunic, tunic_setting, address in tunics:
111115
tunic_option = getattr(settings, tunic_setting)
112116

version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = '9.1.8'
1+
__version__ = '9.1.9'
22

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

0 commit comments

Comments
 (0)