From 9e60e693239a694d5fe3880e8dc01c352fbfbcc4 Mon Sep 17 00:00:00 2001 From: SkyratBot <59378654+SkyratBot@users.noreply.github.com> Date: Wed, 4 Jan 2023 01:49:45 +0100 Subject: [PATCH] [MIRROR] Adds an engraving to the staff of healing regarding proper healing beam usage. [MDB IGNORE] (#18496) * Adds an engraving to the staff of healing regarding proper healing beam usage. (#72403) :cl: fix: Adds an engraving to the staff of healing regarding proper healing beam usage. /:cl: Co-authored-by: Fikou <23585223+Fikou@ users.noreply.github.com> * Adds an engraving to the staff of healing regarding proper healing beam usage. Co-authored-by: Iamgoofball Co-authored-by: Fikou <23585223+Fikou@ users.noreply.github.com> --- code/modules/projectiles/guns/magic/staff.dm | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/code/modules/projectiles/guns/magic/staff.dm b/code/modules/projectiles/guns/magic/staff.dm index b8c5e30258b..40d4f8216fd 100644 --- a/code/modules/projectiles/guns/magic/staff.dm +++ b/code/modules/projectiles/guns/magic/staff.dm @@ -84,6 +84,11 @@ if(!is_wizard_or_friend(user)) to_chat(user, span_hypnophrase("The staff feels weaker as you touch it")) user.balloon_alert(user, "the staff feels weaker as you touch it") + +/obj/item/gun/magic/staff/healing/examine(mob/user) + . = ..() + if(!is_wizard_or_friend(user)) + . += span_notice("On the handle you notice a beautiful engraving in High Spaceman, \"Thou shalt not crosseth thy beams.\"") /obj/item/gun/magic/staff/healing/Initialize(mapload) . = ..()