Zippos can light Cigars (#21059)

* Makes it so Zippos can light Cigars

* accidental commit to master

* Zippos can light Cigars

* parentheses were in the wrong spots
This commit is contained in:
Mooballoono
2023-05-22 22:06:46 +02:00
committed by GitHub
parent 6e5718b8ce
commit 9e0dd390a2
+1 -1
View File
@@ -353,7 +353,7 @@ LIGHTERS ARE IN LIGHTERS.DM
/obj/item/clothing/mask/cigarette/cigar/attackby(obj/item/I, mob/user, params)
if(istype(I, /obj/item/reagent_containers))
return
if(istype(I, /obj/item/match))
if(istype(I, /obj/item/match) || istype(I, /obj/item/lighter/zippo))
..()
else
to_chat(user, "<span class='notice'>[src] straight out REFUSES to be lit by such uncivilized means.</span>")