From 8c19257b887e92bc13347d54108c2d313bb43db6 Mon Sep 17 00:00:00 2001 From: SkyratBot <59378654+SkyratBot@users.noreply.github.com> Date: Sun, 20 Nov 2022 01:25:06 +0100 Subject: [PATCH] [MIRROR] [NO GBP] Fixing some of my oversights with tape [MDB IGNORE] (#17580) * [NO GBP] Fixing some of my oversights with tape (#71321) ## About The Pull Request Tape pieces now have the correct examine tip. When you apply tape to someone they will now get a warning simmilar to trying to apply other clothing, this way you can't bypass the warning by using it on them directly. ## Why It's Good For The Game Fixes oversights ## Changelog :cl: fix: Tape pieces have the correct examine tip. fix: Applying tape pieces by using it on someone will now actually warn them. /:cl: * [NO GBP] Fixing some of my oversights with tape Co-authored-by: Ebb-Real <95765134+Ebb-Real@users.noreply.github.com> --- code/modules/clothing/masks/muzzle.dm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/code/modules/clothing/masks/muzzle.dm b/code/modules/clothing/masks/muzzle.dm index acf43ad503a..376312eb674 100644 --- a/code/modules/clothing/masks/muzzle.dm +++ b/code/modules/clothing/masks/muzzle.dm @@ -50,7 +50,7 @@ /obj/item/clothing/mask/muzzle/tape/examine(mob/user) . = ..() - . += "[span_notice("Target mouth and use it on someone to tape their mouth closed.")]" + . += "[span_notice("Use it on someone while not in combat mode to tape their mouth closed!")]" /obj/item/clothing/mask/muzzle/tape/dropped(mob/living/user) . = ..() @@ -72,6 +72,7 @@ to_chat(attacker, span_notice("[victim] is already wearing somthing on their face.")) return balloon_alert(attacker, "taping mouth...") + to_chat(victim, span_userdanger("[attacker] is attempting to tape your mouth closed!")) if(!do_after(attacker, equip_delay_other, target = victim)) return victim.equip_to_slot_if_possible(src, ITEM_SLOT_MASK)