summaryrefslogtreecommitdiff
path: root/npc/commands/music.txt
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2018-06-03 14:05:08 -0300
committerJesusaves <cpntb1@ymail.com>2018-06-03 14:05:08 -0300
commitc6c0c109836daf33f47114cb7eb1ddc946ad5c19 (patch)
tree975282629a33f25552a5f2271657df2602c46a5e /npc/commands/music.txt
parent1e7ac15b11f3eb0c48db283b6903a727cac5847b (diff)
downloadserverdata-c6c0c109836daf33f47114cb7eb1ddc946ad5c19.tar.gz
serverdata-c6c0c109836daf33f47114cb7eb1ddc946ad5c19.tar.bz2
serverdata-c6c0c109836daf33f47114cb7eb1ddc946ad5c19.tar.xz
serverdata-c6c0c109836daf33f47114cb7eb1ddc946ad5c19.zip
Music filename sanitization
Diffstat (limited to 'npc/commands/music.txt')
-rw-r--r--npc/commands/music.txt12
1 files changed, 6 insertions, 6 deletions
diff --git a/npc/commands/music.txt b/npc/commands/music.txt
index e8e42f37b..6ad3f5dd3 100644
--- a/npc/commands/music.txt
+++ b/npc/commands/music.txt
@@ -38,12 +38,12 @@ OnInit:
bindatcmd "music", "@music::OnCall", 80, 80, 1;
.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, "ghoul", "eric matyas - ghoulish fun.ogg");
+ htput(.hash, "ship", "bartk_forest_of_birches.ogg");
+ htput(.hash, "city", "bartk_adventure.ogg");
+ htput(.hash, "ghoul", "eric_matyas_ghouls.ogg");
htput(.hash, "surreal", "eric matyas - surreal place.ogg");
- htput(.hash, "magic", "magick - real.ogg");
- htput(.hash, "forest", "dariunas - the forest.ogg");
+ htput(.hash, "magic", "magick_real.ogg");
+ htput(.hash, "forest", "dariunas_forest.ogg");
htput(.hash, "mythica", "mythica.ogg");
htput(.hash, "acid", "3b5.ogg");
htput(.hash, "misuse", "misuse.ogg");
@@ -52,6 +52,6 @@ OnInit:
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, "lands", "Unforgiving_Lands.ogg");
htput(.hash, "deepcave", "Deep_Cave.ogg");
}