diff --git a/modular_citadel/code/game/objects/items.dm b/modular_citadel/code/game/objects/items.dm
index c94923f9de..dba460414e 100644
--- a/modular_citadel/code/game/objects/items.dm
+++ b/modular_citadel/code/game/objects/items.dm
@@ -9,7 +9,7 @@
alternate_screams = list('modular_citadel/sound/voice/scream_silicon.ogg')
/obj/item/clothing/head/ushanka
- alternate_screams = list('modular_citadel/sound/misc/cyka1.ogg', 'modular_citadel/sound/misc/cheekibreeki.ogg')
+ alternate_screams = list('sound/voice/human/cyka1.ogg', 'sound/voice/human/cheekibreeki.ogg')
/obj/item/proc/grenade_prime_react(obj/item/grenade/nade)
return
\ No newline at end of file
diff --git a/modular_citadel/code/modules/admin/admin.dm b/modular_citadel/code/modules/admin/admin.dm
index 52c787dbdb..529d0c79ec 100644
--- a/modular_citadel/code/modules/admin/admin.dm
+++ b/modular_citadel/code/modules/admin/admin.dm
@@ -15,7 +15,7 @@
return
to_chat(M, "Man up, and deal with it.
Move on.")
- M.playsound_local(M, 'modular_citadel/sound/misc/manup.ogg', 50, FALSE, pressure_affected = FALSE)
+ M.playsound_local(M, 'sound/voice/manup.ogg', 50, FALSE, pressure_affected = FALSE)
log_admin("Man up: [key_name(usr)] told [key_name(M)] to man up")
var/message = "[key_name_admin(usr)] told [key_name_admin(M)] to man up."
@@ -32,7 +32,7 @@
to_chat(world, "Man up, and deal with it.
Move on.")
for(var/mob/M in GLOB.player_list)
- M.playsound_local(M, 'modular_citadel/sound/misc/manup.ogg', 50, FALSE, pressure_affected = FALSE)
+ M.playsound_local(M, 'sound/voice/manup.ogg', 50, FALSE, pressure_affected = FALSE)
log_admin("Man up global: [key_name(usr)] told everybody to man up")
message_admins("[key_name_admin(usr)] told everybody to man up.")
diff --git a/sound/misc/cheekibreeki.ogg b/sound/voice/human/cheekibreeki.ogg
similarity index 100%
rename from sound/misc/cheekibreeki.ogg
rename to sound/voice/human/cheekibreeki.ogg
diff --git a/sound/misc/cyka1.ogg b/sound/voice/human/cyka1.ogg
similarity index 100%
rename from sound/misc/cyka1.ogg
rename to sound/voice/human/cyka1.ogg
diff --git a/sound/misc/manup.ogg b/sound/voice/manup.ogg
similarity index 100%
rename from sound/misc/manup.ogg
rename to sound/voice/manup.ogg