diff options
Diffstat (limited to 'npc')
-rw-r--r-- | npc/commands/music.txt | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/npc/commands/music.txt b/npc/commands/music.txt index 3a964083b..e8e42f37b 100644 --- a/npc/commands/music.txt +++ b/npc/commands/music.txt @@ -28,7 +28,7 @@ OnCall: if (.@m$ == "Not found") { //.@m$ = implode(.@atcmd_parameters$[0], " "); dispbottom "Invalid music key. Current accepted values are:"; - dispbottom "ship, city, ghoul, surreal, magic, forest, mythica, acid, misuse, prelude, sunrise, peace, toast"; + dispbottom "ship, city, ghoul, surreal, magic, forest, mythica, acid, misuse, prelude, sunrise, peace, toast, woodland2, lands, deepcave"; } else { changemusic .@map$, .@m$; } @@ -51,4 +51,7 @@ OnInit: htput(.hash, "sunrise", "tws_birds_in_the_sunrise.ogg"); htput(.hash, "peace", "peace.ogg"); htput(.hash, "toast", "dragon_and_toast.ogg"); + htput(.hash, "woodland2", "New_Woodlands.ogg"); + htput(.hash, "lands", "Unforgiving Lands.ogg"); + htput(.hash, "deepcave", "Deep_Cave.ogg"); } |