diff --git a/code/modules/mob/living/silicon/robot/robot.dm b/code/modules/mob/living/silicon/robot/robot.dm index 513190c96777..8d4c38a9ceeb 100644 --- a/code/modules/mob/living/silicon/robot/robot.dm +++ b/code/modules/mob/living/silicon/robot/robot.dm @@ -621,6 +621,7 @@ C.electronics_damage = WC.burn to_chat(usr, "You install the [W.name].") + playsound(src, 'sound/items/insert_key.ogg', VOL_EFFECTS_MASTER, 35) return @@ -696,6 +697,7 @@ var/datum/robot_component/C = components[remove] var/obj/item/robot_parts/robot_component/I = C.wrapped to_chat(user, "You remove \the [I].") + playsound(src, 'sound/items/remove.ogg', VOL_EFFECTS_MASTER, 75) if(istype(I)) I.brute = C.brute_damage I.burn = C.electronics_damage diff --git a/sound/items/remove.ogg b/sound/items/remove.ogg new file mode 100644 index 000000000000..92bae70d5748 Binary files /dev/null and b/sound/items/remove.ogg differ