1
0
Fork 0
mirror of https://github.com/notwa/mm synced 2024-06-26 03:57:13 -07:00

lemon-scented cleanup

This commit is contained in:
Connor Olding 2015-07-23 15:23:29 -07:00
parent 727c74e6aa
commit 0fd6015fde
2 changed files with 32 additions and 27 deletions

View File

@ -1,21 +1,22 @@
-- entrance order, not scene order. i know it's confusing.
local bad="[crash]"
return {
[0]="Southern Swamp (Clean)",
"(crash)",
"(crash)",
"(crash)",
"(crash)",
"(crash)",
"(crash)",
bad,
bad,
bad,
bad,
bad,
bad,
"Grottos",
"Intro Map",
"(crash)",
bad,
"Magic Hags' Potion Shop",
"Majora",
"Beneath the Graveyard",
"Curiosity Shop",
"(crash)",
"(crash)",
bad,
bad,
"Mama's House / Barn",
"Honey & Darling's Shop",
"Mayor's Residence",
@ -49,7 +50,7 @@ return {
"Post Office",
"Marine Research Lab",
"Beneath the Graveyard (Dampe)",
"(crash)",
bad,
"Goron Shrine",
"Zora Hall",
"Trading Post",
@ -58,7 +59,7 @@ return {
"Great Bay Coast (Lab Area)",
"Great Bay Coast (Zora Area)",
"Lottery Shop",
"(crash)",
bad,
"Pirates' Fortress (Outside)",
"Fisherman's Hut",
"Goron Shop",
@ -113,19 +114,19 @@ return {
"North Clock Town",
"South Clock Town",
"Laundry Pool",
"(crash)",
"(crash)",
"(crash)",
"(crash)",
"(crash)",
"(crash)",
"(crash)",
"(crash)",
"(crash)",
"(crash)",
"(crash)",
"(crash)",
"(crash)",
"(crash)",
"(crash)",
bad,
bad,
bad,
bad,
bad,
bad,
bad,
bad,
bad,
bad,
bad,
bad,
bad,
bad,
bad,
}

View File

@ -34,7 +34,11 @@ function calc_dump(a)
return
end
print(scene_names[scene_id])
print(t[entrance])
if t[entrance] then
print(t[entrance])
else
print("[unknown entrance]")
end
end
function calc(exit)