Skip to content

Commit 3f38269

Browse files
authored
Merge pull request #2499 from 2dos/chapter-13
Fix climbing w/ move rando
2 parents fba146f + a066a12 commit 3f38269

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

base-hack/src/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -457,7 +457,7 @@ typedef struct menu_paad {
457457
} menu_paad;
458458

459459
Gfx *displayMenuWarnings(Gfx *dl) {
460-
if (EEPROMType != 2) {
460+
if (EEPROMType != EEPROM_TYPE_16K) {
461461
actorData* actor = findActorWithType(0x146);
462462
if (actor) {
463463
menu_paad* paad = (menu_paad*)actor->paad;

randomizer/Patching/MoveLocationRando.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -167,6 +167,7 @@ def writeMoveDataToROM(ROM_COPY: LocalROM, arr: list, enable_hints: bool, spoile
167167
"vine": 0x183,
168168
"camera": 0x2FD,
169169
"shockwave": 0x179,
170+
"climbing": 0x297,
170171
"camera_shockwave": 0xFFFE,
171172
}
172173
flag_index = 0xFFFF

0 commit comments

Comments
 (0)