From 6bbf8f1b09477a63370ce59921aea36ee4e24da2 Mon Sep 17 00:00:00 2001 From: Olivier <75835176+JohnsonMichaels123@users.noreply.github.com> Date: Wed, 30 Dec 2020 19:02:09 -0800 Subject: [PATCH] Added SFX for Dark Wizard (#467) -Adds block sound and attack sound for wizards --- .../com/rebotted/game/content/music/sound/CombatSounds.java | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/2006Redone Server/src/main/java/com/rebotted/game/content/music/sound/CombatSounds.java b/2006Redone Server/src/main/java/com/rebotted/game/content/music/sound/CombatSounds.java index 6df265c3..b47a71bd 100644 --- a/2006Redone Server/src/main/java/com/rebotted/game/content/music/sound/CombatSounds.java +++ b/2006Redone Server/src/main/java/com/rebotted/game/content/music/sound/CombatSounds.java @@ -57,6 +57,10 @@ public class CombatSounds { || npc.contains("monk") || npc.contains("thief")) { return 417; } + if (npc.contains("wizard")) + { + return 1002; + } if (npc.contains("guard") || npc.contains("farmer")) return 403; return Misc.random(6) > 3 ? 398 : 394; @@ -105,7 +109,7 @@ public class CombatSounds { if (npc.contains("man") && !npc.contains("woman")) { return 816; } - if (npc.contains("monk") || npc.contains("guard") || npc.contains("farmer") || npc.contains("thief") || npc.contains("druid")){ + if (npc.contains("monk") || npc.contains("guard") || npc.contains("farmer") || npc.contains("thief") || npc.contains("druid") || npc.contains("wizard")){ return 816; } if (!npc.contains("man") && npc.contains("woman")) {