From 8a125645cc3c123f17ba8140f90c0a3bd0934ae1 Mon Sep 17 00:00:00 2001 From: Markus Larsson <82539179+MarkusLarsson421@users.noreply.github.com> Date: Wed, 7 Aug 2024 13:20:41 +0200 Subject: [PATCH] Fixed Cheap Lighters not Burning You (#11259) * Update cigs_lighters.dm * Update cigs_lighters.dm * oops * Update cigs_lighters.dm * Update code/game/objects/items/cigs_lighters.dm At this point I might as well add you to the credits. lol Co-authored-by: PowerfulBacon <26465327+PowerfulBacon@users.noreply.github.com> --------- Co-authored-by: PowerfulBacon <26465327+PowerfulBacon@users.noreply.github.com> --- code/game/objects/items/cigs_lighters.dm | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/code/game/objects/items/cigs_lighters.dm b/code/game/objects/items/cigs_lighters.dm index cc3cf0f0af015..f536623565e43 100644 --- a/code/game/objects/items/cigs_lighters.dm +++ b/code/game/objects/items/cigs_lighters.dm @@ -706,15 +706,9 @@ CIGARETTE PACKETS ARE IN FANCY.DM user.visible_message("Without even breaking stride, [user] flips open and lights [src] in one smooth movement.", "Without even breaking stride, you flip open and light [src] in one smooth movement.") playsound(src.loc, 'sound/items/zippo_on.ogg', 100, 1) else - var/prot = FALSE var/mob/living/carbon/human/H = user - if(istype(H) && H.gloves) - var/obj/item/clothing/gloves/G = H.gloves - if(G.max_heat_protection_temperature) - prot = (G.max_heat_protection_temperature > 360) - else - prot = TRUE + var/prot = !istype(H) || H.gloves if(prot || prob(75)) user.visible_message("After a few attempts, [user] manages to light [src].", "After a few attempts, you manage to light [src].")