diff --git a/code/game/objects/items/weapons/defib.dm b/code/game/objects/items/weapons/defib.dm index 4f6858b9cdf..758e30947b0 100644 --- a/code/game/objects/items/weapons/defib.dm +++ b/code/game/objects/items/weapons/defib.dm @@ -2,7 +2,7 @@ /obj/item/defibrillator name = "defibrillator" - desc = "A device that delivers powerful shocks to detachable paddles that resuscitate incapacitated patients. Ctrl-click on it to remove the paddles from the defibrillator." + desc = "A device that delivers powerful shocks to detachable paddles that resuscitate incapacitated patients." icon_state = "defibunit" item_state = "defibunit" slot_flags = SLOT_BACK @@ -41,6 +41,10 @@ update_overlays() update_charge() +/obj/item/defibrillator/examine(mob/user) + ..(user) + to_chat(user,"Ctrl-click to remove the paddles from the defibrillator.") + /obj/item/defibrillator/proc/update_power() if(bcell) if(bcell.charge < paddles.revivecost)