Skip to content

Commit e0b5100

Browse files
committed
Fix typo in Item.unshuffled_dungeon_item
1 parent 710286a commit e0b5100

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Item.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ def unshuffled_dungeon_item(self) -> bool:
185185
(self.type in ('TCGSmallKey', 'TCGSmallKeyRing') and self.world.settings.shuffle_tcgkeys in ('remove', 'vanilla')) or
186186
(self.type == 'BossKey' and self.world.settings.shuffle_bosskeys in ('remove', 'vanilla', 'dungeon')) or
187187
(self.type == 'GanonBossKey' and self.world.shuffle_ganon_bosskey in ('remove', 'vanilla', 'dungeon')) or
188-
(self.map and (self.world.settings.shuffle_mapc in ('remove', 'startwith', 'vanilla', 'dungeon'))) or
188+
(self.map and (self.world.settings.shuffle_map in ('remove', 'startwith', 'vanilla', 'dungeon'))) or
189189
(self.compass and (self.world.settings.shuffle_compass in ('remove', 'startwith', 'vanilla', 'dungeon'))) or
190190
(self.type == 'SilverRupee' and self.world.settings.shuffle_silver_rupees in ('remove', 'vanilla', 'dungeon')) or
191191
(self.type == 'DungeonReward' and self.world.settings.shuffle_dungeon_rewards in ('vanilla', 'reward', 'dungeon')))

version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
__version__ = '9.0.12'
22

33
# This is a supplemental version number for branches based off of main dev.
4-
supplementary_version = 2
4+
supplementary_version = 3
55

66
# Pick a unique identifier byte for your fork if you are intending to have a long-lasting branch.
77
# This will be 0x00 for main releases and 0x01 for main dev.

0 commit comments

Comments
 (0)