From 96f2a087adc46231ba3cde3090a30c3ff219d8e3 Mon Sep 17 00:00:00 2001 From: Krausus Date: Thu, 30 Apr 2015 09:26:14 -0400 Subject: [PATCH] Re-adds passive nicotine comment Thanks for eating my comment, git. --- code/game/objects/items/weapons/cigs_lighters.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/code/game/objects/items/weapons/cigs_lighters.dm b/code/game/objects/items/weapons/cigs_lighters.dm index 8a113f14fce..4a62e8d99c4 100644 --- a/code/game/objects/items/weapons/cigs_lighters.dm +++ b/code/game/objects/items/weapons/cigs_lighters.dm @@ -202,6 +202,7 @@ CIGARETTE PACKETS ARE IN FANCY.DM reagents.remove_any(REAGENTS_METABOLISM) if(has_nicotine && iscarbon(loc) && (src == loc:wear_mask) && !smoker_is_synthetic) + // If the cigarette has nicotine, make sure the smoker is getting a bit, even if it's not in the reagents var/mob/living/carbon/C = loc if (!C.reagents.has_reagent("nicotine")) C.reagents.add_reagent("nicotine", 0.1)