mirror of
https://github.com/coop-deluxe/sm64coopdx.git
synced 2024-11-22 12:05:11 +00:00
Added 130 Stars CG Music (#272)
This commit is contained in:
parent
8046d19db1
commit
e01f1ea04d
1 changed files with 10 additions and 0 deletions
|
@ -122,5 +122,15 @@ function on_death()
|
|||
end
|
||||
end
|
||||
|
||||
function on_warp_and_init() -- 130 stars castle grounds music
|
||||
local m = gMarioStates[0]
|
||||
if m.numStars >= 130 and gNetworkPlayers[0].currLevelNum == LEVEL_CASTLE_GROUNDS then
|
||||
play_music(0, 0x2F, 1)
|
||||
end
|
||||
end
|
||||
|
||||
|
||||
hook_event(HOOK_MARIO_UPDATE, mario_update)
|
||||
hook_event(HOOK_ON_DEATH, on_death)
|
||||
hook_event(HOOK_ON_LEVEL_INIT, on_warp_and_init)
|
||||
hook_event(HOOK_ON_WARP, on_warp_and_init)
|
||||
|
|
Loading…
Reference in a new issue