From c3909dcf2d28a538f408787fc4a443275fee8f52 Mon Sep 17 00:00:00 2001 From: Unknown Date: Sat, 5 Sep 2020 01:22:18 -0500 Subject: [PATCH] restores attack_paw() because apparently it's for monkies. fuck. --- code/modules/clothing/masks/miscellaneous.dm | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/code/modules/clothing/masks/miscellaneous.dm b/code/modules/clothing/masks/miscellaneous.dm index c8399321..9f403cdf 100644 --- a/code/modules/clothing/masks/miscellaneous.dm +++ b/code/modules/clothing/masks/miscellaneous.dm @@ -17,6 +17,14 @@ return ..() +/obj/item/clothing/mask/muzzle/attack_paw(mob/user) //apparently this is for monkies only + if(iscarbon(user)) + var/mob/living/carbon/C = user + if(src == C.wear_mask) + to_chat(user, "You need help taking this off!") + return + ..() + /obj/item/clothing/mask/muzzle/ballgag name = "ball gag" desc = "To stop that awful noise, but lewder."