From ea5f6037cf27093f14b6e4df3d4a86eec637cfa6 Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Sun, 11 Jun 2017 20:44:46 -0500 Subject: [PATCH] Lighters need to be on --- code/game/objects/items/weapons/cigs_lighters.dm | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/code/game/objects/items/weapons/cigs_lighters.dm b/code/game/objects/items/weapons/cigs_lighters.dm index 61ac601e71..76a44821f6 100644 --- a/code/game/objects/items/weapons/cigs_lighters.dm +++ b/code/game/objects/items/weapons/cigs_lighters.dm @@ -484,7 +484,8 @@ CIGARETTE PACKETS ARE IN FANCY.DM icon_state = "[initial(icon_state)]" /obj/item/weapon/lighter/ignition_effect(atom/A, mob/user) - . = "With a single flick of their wrist, [user] smoothly lights [A] with [src]. Damn [user.p_theyre()] cool." + if(is_hot()) + . = "With a single flick of their wrist, [user] smoothly lights [A] with [src]. Damn [user.p_theyre()] cool." /obj/item/weapon/lighter/proc/set_lit(new_lit) lit = new_lit @@ -581,7 +582,8 @@ CIGARETTE PACKETS ARE IN FANCY.DM add_overlay(base_overlay) /obj/item/weapon/lighter/greyscale/ignition_effect(atom/A, mob/user) - . = "After some fiddling, [user] manages to light [A] with [src]." + if(is_hot()) + . = "After some fiddling, [user] manages to light [A] with [src]." ///////////