summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPepper0ni <93387759+Pepper0ni@users.noreply.github.com>2026-03-24 20:23:20 +0000
committerGitHub <noreply@github.com>2026-03-24 20:23:20 +0000
commit57269c8e46abbac83e2ab4a52a8fbcc72bc00ade (patch)
treefa1fff1b8e986c4923f08d050f3db8e99af4ac82
parent5e13570b8375a3ad5d85120deacaa879027c7b48 (diff)
fix volv FTR logic (#6403)
-rw-r--r--soh/soh/Enhancements/randomizer/location_access/dungeons/fire_temple.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/soh/soh/Enhancements/randomizer/location_access/dungeons/fire_temple.cpp b/soh/soh/Enhancements/randomizer/location_access/dungeons/fire_temple.cpp
index 3ff361b3d..c77d43cfb 100644
--- a/soh/soh/Enhancements/randomizer/location_access/dungeons/fire_temple.cpp
+++ b/soh/soh/Enhancements/randomizer/location_access/dungeons/fire_temple.cpp
@@ -1062,7 +1062,7 @@ void RegionTable_Init_FireTemple() {
areaTable[RR_FIRE_TEMPLE_BOSS_ROOM] = Region("Fire Temple Boss Room", SCENE_FIRE_TEMPLE_BOSS, {
// Events
- EVENT_ACCESS(LOGIC_FIRE_TEMPLE_CLEAR, logic->FireTimer() >= 64 && logic->CanKillEnemy(RE_VOLVAGIA)),
+ EVENT_ACCESS(LOGIC_FIRE_TEMPLE_CLEAR, logic->CanUse(RG_GORON_TUNIC) && logic->CanKillEnemy(RE_VOLVAGIA)),
}, {
// Locations
LOCATION(RC_FIRE_TEMPLE_VOLVAGIA_HEART, logic->Get(LOGIC_FIRE_TEMPLE_CLEAR)),