diff options
Diffstat (limited to 'npc/commands')
-rw-r--r-- | npc/commands/music.txt | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/npc/commands/music.txt b/npc/commands/music.txt index 2399f679f..e419487c8 100644 --- a/npc/commands/music.txt +++ b/npc/commands/music.txt @@ -29,8 +29,8 @@ 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, woodland2, unforgiving"; - dispbottom "deepcave, 8bit, action, hurns, fields, tulim, candor, lof, icecave, manacave, adventure"; + dispbottom "ship, city, ghoul, surreal, magic, forest, mythica, acid, misuse, prelude, sunrise, peace, peace2, toast, woodland2"; + dispbottom "unforgiving, deepcave, 8bit, action, hurns, fields, tulim, candor, lof, icecave, manacave, adventure, dance"; } else { changemusic .@map$, .@m$; } @@ -67,4 +67,5 @@ OnInit: htput(.hash, "lof", "steam.ogg"); htput(.hash, "adventure", "tmw_adventure.ogg"); htput(.hash, "manacave", "tws_green_island.ogg"); + htput(.hash, "dance", "dance_monster.ogg"); } |