From 2f23d507402b2feee0ef11e38ab7c4fc4f3045b0 Mon Sep 17 00:00:00 2001 From: Couls Date: Mon, 11 Mar 2019 21:44:32 -0400 Subject: [PATCH] Make text blue --- code/game/objects/items/weapons/defib.dm | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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)