From 59b7d73dd2f85e6e87eff67a24de0304e2932c63 Mon Sep 17 00:00:00 2001 From: Jovaniph Date: Sun, 3 Sep 2017 17:45:01 -0400 Subject: [PATCH] main branch --- code/game/machinery/computer/HolodeckControl.dm | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/code/game/machinery/computer/HolodeckControl.dm b/code/game/machinery/computer/HolodeckControl.dm index c036bedde1c..c5c34e9da02 100644 --- a/code/game/machinery/computer/HolodeckControl.dm +++ b/code/game/machinery/computer/HolodeckControl.dm @@ -439,7 +439,7 @@ name = "Holographic Energy Sword" desc = "This looks like a real energy sword!" icon_state = "sword0" - hitsound = "sound/weapons/blade1.ogg" + hitsound = "swing_hit" force = 3.0 throw_speed = 1 throw_range = 5 @@ -468,12 +468,14 @@ if(active) force = 30 icon_state = "sword[item_color]" + hitsound = "sound/weapons/blade1.ogg" w_class = WEIGHT_CLASS_BULKY playsound(user, 'sound/weapons/saberon.ogg', 50, 1) to_chat(user, "[src] is now active.") else force = 3 icon_state = "sword0" + hitsound = "swing_hit" w_class = WEIGHT_CLASS_SMALL playsound(user, 'sound/weapons/saberoff.ogg', 50, 1) to_chat(user, "[src] can now be concealed.")