diff --git a/code/modules/paperwork/photocopier.dm b/code/modules/paperwork/photocopier.dm
index ef1744685a..87aa611efb 100644
--- a/code/modules/paperwork/photocopier.dm
+++ b/code/modules/paperwork/photocopier.dm
@@ -67,16 +67,18 @@
break
if (istype(copyitem, /obj/item/weapon/paper))
+ playsound(loc, "sound/machines/copier.ogg", 100, 1)
+ sleep(11)
copy(copyitem)
- playsound(src.loc, "sound/machines/coper.ogg", 100, 1)
- sleep(15)
else if (istype(copyitem, /obj/item/weapon/photo))
+ playsound(loc, "sound/machines/copier.ogg", 100, 1)
+ sleep(11)
photocopy(copyitem)
- playsound(src.loc, "sound/machines/coper.ogg", 100, 1)
- sleep(15)
else if (istype(copyitem, /obj/item/weapon/paper_bundle))
+ sleep(11)
+ playsound(loc, "sound/machines/copier.ogg", 100, 1)
var/obj/item/weapon/paper_bundle/B = bundlecopy(copyitem)
- sleep(15*B.pages.len)
+ sleep(11*B)
else
usr << "\The [copyitem] can't be copied by \the [src]."
break
@@ -125,6 +127,7 @@
copyitem = O
O.loc = src
user << "You insert \the [O] into \the [src]."
+ playsound(loc, "sound/machines/click.ogg", 100, 1)
flick(insert_anim, src)
else
user << "There is already something in \the [src]."