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.")