diff --git a/RELEASENOTES.md b/RELEASENOTES.md index db0682ed..7b843e09 100644 --- a/RELEASENOTES.md +++ b/RELEASENOTES.md @@ -142,7 +142,11 @@ These are now independent of retro mode and have three options: None, Random, an # Patch Notes * 1.4.1.9u - * todo + * Enemy Drop Underworld: Changed enemy drop indicator to not require compass + * Experimental: Moved dark world bunny spawns out of experimental. (It is now always on) + * Fix: Red/Blue pendants were swapped for autotracking. (Thanks Muffins!) + * Fix: Red square sometimes wasn't blinking + * Updated tournament winner * 1.4.1.8u * HUD: New dungeon indicators based on common abbreviations * OWG+HMG: EG is allowed to be armed diff --git a/Rom.py b/Rom.py index fba37983..59470684 100644 --- a/Rom.py +++ b/Rom.py @@ -42,7 +42,7 @@ from source.enemizer.Enemizer import write_enemy_shuffle_settings JAP10HASH = '03a63945398191337e896e5771f77173' -RANDOMIZERBASEHASH = '67b9ede4928dac94a650e9e9396ef44a' +RANDOMIZERBASEHASH = 'deda3f2e279062c296181393dba6c51c' class JsonRom(object): @@ -569,8 +569,7 @@ def patch_rom(world, rom, player, team, is_mystery=False): rom.write_bytes(0xfb1fc, [0xc8, 0x9d, 0x69, 0xb4, 0xac, 0x5d]) if world.standardize_palettes[player] == 'original': dr_flags |= DROptions.OriginalPalettes - if world.experimental[player]: - dr_flags |= DROptions.DarkWorld_Spawns + dr_flags |= DROptions.DarkWorld_Spawns # no longer experimental if world.logic[player] not in ['owglitches', 'hybridglitches', 'nologic']: dr_flags |= DROptions.Fix_EG if world.door_type_mode[player] in ['big', 'all', 'chaos']: diff --git a/data/base2current.bps b/data/base2current.bps index 2c405d81..ea0dde96 100644 Binary files a/data/base2current.bps and b/data/base2current.bps differ