Skip to content

Commit

Permalink
changed non starting age has access to ToT in ER
Browse files Browse the repository at this point in the history
  • Loading branch information
Hamsda committed Feb 2, 2021
1 parent e00940e commit 6667ba5
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions ootrando_overworldmap_hamsda/scripts/regions.lua
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,23 @@ data_per_region = {
return AccessibilityLevel.Normal
end
},
--non starting age has guaranteed access to ToT
--this makes it so you don't have to SW to begin exploring
["Temple of Time"] = {
["fixed"] = true,
["child_access"] = function()
if has("setting_age_adult") then
return AccessibilityLevel.Normal
end
return AccessibilityLevel.None
end,
["adult_access"] = function()
if has("setting_age_child") then
return AccessibilityLevel.Normal
end
return AccessibilityLevel.None
end
},
["Prelude of Light Warp"] = {
["child_access"] = function()
if has("ocarina") and has("prelude") then
Expand Down

0 comments on commit 6667ba5

Please sign in to comment.