summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsitton76 <58642183+sitton76@users.noreply.github.com>2025-04-17 22:08:44 -0500
committerGitHub <noreply@github.com>2025-04-17 23:08:44 -0400
commite4cdbfdfb129b94c049819486f4b980502103df4 (patch)
tree9f65579eda2898706042aac47a92a942f69a8129
parentc89cba706b4fc165bf2414409a0fdf293ef9db00 (diff)
Fixed entrance logic issue in PATH_TO_MOUNTAIN_VILLAGE (#1124)
-rw-r--r--mm/2s2h/Rando/Logic/Regions/North.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/mm/2s2h/Rando/Logic/Regions/North.cpp b/mm/2s2h/Rando/Logic/Regions/North.cpp
index 3478fe238..02a614037 100644
--- a/mm/2s2h/Rando/Logic/Regions/North.cpp
+++ b/mm/2s2h/Rando/Logic/Regions/North.cpp
@@ -288,7 +288,7 @@ static RegisterShipInitFunc initFunc([]() {
CHECK(RC_PATH_TO_MOUNTAIN_VILLAGE_SMALL_SNOWBALL_03, true),
},
.exits = { // TO FROM
- EXIT(ENTRANCE(MOUNTAIN_VILLAGE_WINTER, 6), ENTRANCE(PATH_TO_MOUNTAIN_VILLAGE, 1), true),
+ EXIT(ENTRANCE(TERMINA_FIELD, 3), ENTRANCE(PATH_TO_MOUNTAIN_VILLAGE, 0), true),
},
.connections = {
CONNECTION(RR_PATH_TO_MOUNTAIN_VILLAGE_UPPER, CAN_BE_GORON || CAN_USE_EXPLOSIVE || CAN_USE_MAGIC_ARROW(FIRE)),
@@ -306,7 +306,7 @@ static RegisterShipInitFunc initFunc([]() {
CHECK(RC_PATH_TO_MOUNTAIN_VILLAGE_SMALL_SNOWBALL_04, true),
},
.exits = { // TO FROM
- EXIT(ENTRANCE(TERMINA_FIELD, 3), ENTRANCE(PATH_TO_MOUNTAIN_VILLAGE, 0), true),
+ EXIT(ENTRANCE(MOUNTAIN_VILLAGE_WINTER, 6), ENTRANCE(PATH_TO_MOUNTAIN_VILLAGE, 1), true),
},
.connections = {
CONNECTION(RR_PATH_TO_MOUNTAIN_VILLAGE_LOWER, CAN_BE_GORON || CAN_USE_EXPLOSIVE || CAN_USE_MAGIC_ARROW(FIRE)),