diff options
author | Jesusaves <cpntb1@ymail.com> | 2018-03-23 19:51:23 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2018-03-23 19:51:23 -0300 |
commit | 3d53a7be06db7d087883b4dcefabd8cb474fbc8d (patch) | |
tree | 85c3b93c48a0bbf59d6ce097a153aa5ed4a3ec5f | |
parent | 67b2caafa7229fb1c62efd6264814d2ca524a201 (diff) | |
download | serverdata-3d53a7be06db7d087883b4dcefabd8cb474fbc8d.tar.gz serverdata-3d53a7be06db7d087883b4dcefabd8cb474fbc8d.tar.bz2 serverdata-3d53a7be06db7d087883b4dcefabd8cb474fbc8d.tar.xz serverdata-3d53a7be06db7d087883b4dcefabd8cb474fbc8d.zip |
Correct some @music stuff
-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"); |