diff options
Diffstat (limited to 'npc')
-rw-r--r-- | npc/commands/music.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/npc/commands/music.txt b/npc/commands/music.txt index a89e00b22..54d676c8f 100644 --- a/npc/commands/music.txt +++ b/npc/commands/music.txt @@ -9,7 +9,7 @@ // @music <short name> // // example: -// @music fun +// @music forest - script @music 32767,{ end; @@ -30,7 +30,7 @@ OnCall: { //.@m$ = implode(.@atcmd_parameters$[0], " "); dispbottom "Invalid music key. Current accepted values are:"; - dispbottom "ship, city, fun, surreal, magic, forest, mythica, acid, misuse, prelude, sunrise, peace"; + dispbottom "ship, city, ghoul, surreal, magic, forest, mythica, acid, misuse, prelude, sunrise, peace"; } else { changemusic .@map$, .@m$; } @@ -42,7 +42,7 @@ OnInit: .hash = htnew; // create hashtable htput(.hash, "ship", "bartk - in the forest of the birches.ogg"); htput(.hash, "city", "bartk - the adventure begins.ogg"); - htput(.hash, "fun", "eric matyas - ghoulish fun.ogg"); + htput(.hash, "ghoul", "eric matyas - ghoulish fun.ogg"); htput(.hash, "surreal", "eric matyas - surreal place.ogg"); htput(.hash, "magic", "magick - real.ogg"); htput(.hash, "forest", "dariunas - the forest.ogg"); |