From 6d6592c60b6494b6d4eaee0b60c69580e13f70a6 Mon Sep 17 00:00:00 2001 From: ZomgPonies Date: Mon, 28 Apr 2014 19:05:27 -0400 Subject: [PATCH] Fixed IPC getting high from smokables --- code/game/objects/items/weapons/cigs_lighters.dm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/code/game/objects/items/weapons/cigs_lighters.dm b/code/game/objects/items/weapons/cigs_lighters.dm index 5decc710d15..7811a021c99 100644 --- a/code/game/objects/items/weapons/cigs_lighters.dm +++ b/code/game/objects/items/weapons/cigs_lighters.dm @@ -167,6 +167,8 @@ CIGARETTE PACKETS ARE IN FANCY.DM if(reagents && reagents.total_volume) // check if it has any reagents at all if(iscarbon(loc) && (src == loc:wear_mask)) // if it's in the human/monkey mouth, transfer reagents to the mob var/mob/living/carbon/C = loc + if(C.flags & IS_SYNTHETIC) + return if(prob(15)) // so it's not an instarape in case of acid reagents.reaction(C, INGEST) reagents.trans_to(C, REAGENTS_METABOLISM)