diff --git a/code/modules/surgery/organs/autoimplanter.dm b/code/modules/surgery/organs/autoimplanter.dm index d01f90d9ae8..d28958d9c53 100644 --- a/code/modules/surgery/organs/autoimplanter.dm +++ b/code/modules/surgery/organs/autoimplanter.dm @@ -1,8 +1,8 @@ /obj/item/device/autoimplanter name = "autoimplanter" desc = "A device that automatically injects a cyber-implant into the user without the hassle of extensive surgery. It has a slot to insert implants and a screwdriver slot for removing accidentally added implants." - icon_state = "gangtool-white" - item_state = "walkietalkie" + icon_state = "autoimplanter" + item_state = "walkietalkie"//left as this so as to intentionally not have inhands w_class = 2 var/obj/item/organ/internal/cyberimp/storedorgan @@ -32,4 +32,5 @@ var/turf/floorloc = get_turf(user) floorloc.contents += contents user << "You remove the [storedorgan] from [src]." + playsound(get_turf(user), 'sound/items/Screwdriver.ogg', 50, 1) storedorgan = null diff --git a/icons/obj/device.dmi b/icons/obj/device.dmi index 29c41a62319..1fd8b3713b9 100644 Binary files a/icons/obj/device.dmi and b/icons/obj/device.dmi differ