mirror of
https://github.com/notwa/mm
synced 2024-11-04 22:29:02 -08:00
lemon-scented cleanup
This commit is contained in:
parent
727c74e6aa
commit
0fd6015fde
2 changed files with 32 additions and 27 deletions
|
@ -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,
|
||||
}
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue