From 8797ca4602e30a3efcb188fc6bb31c35f4970823 Mon Sep 17 00:00:00 2001 From: warriorstar-orion Date: Tue, 29 Apr 2025 20:41:25 -0400 Subject: [PATCH] remove cigarette debugging message (#29157) --- code/game/objects/items/weapons/cigs.dm | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/code/game/objects/items/weapons/cigs.dm b/code/game/objects/items/weapons/cigs.dm index d1d3f8c04b1..bce4f50f8d3 100644 --- a/code/game/objects/items/weapons/cigs.dm +++ b/code/game/objects/items/weapons/cigs.dm @@ -67,7 +67,7 @@ LIGHTERS ARE IN LIGHTERS.DM if(lit) extinguish_cigarette(user) - + /obj/item/clothing/mask/cigarette/item_interaction(mob/living/user, obj/item/used, list/modifiers) if(used.cigarette_lighter_act(user, user, src)) return ITEM_INTERACT_COMPLETE @@ -306,7 +306,6 @@ LIGHTERS ARE IN LIGHTERS.DM to_chat(M, "Your [name] goes out.") // Only put the butt in the user's mouth if there's already a cig there. if(M.wear_mask == src) - to_chat(M, "Butt in your mouth!") M.drop_item_to_ground(src, force = TRUE) //Force the un-equip so the overlays update butt.slot_flags |= ITEM_SLOT_MASK // Temporarily allow it to go on masks M.equip_to_slot_if_possible(butt, ITEM_SLOT_MASK)