Merge pull request #16422 from Qwertytoforty/too-hot-to-handle

Immolator lasers now immolate all mobs
This commit is contained in:
variableundefined
2021-09-11 13:22:02 -05:00
committed by GitHub

View File

@@ -142,8 +142,8 @@
/obj/item/projectile/beam/immolator/on_hit(atom/target, blocked = 0)
. = ..()
if(istype(target, /mob/living/carbon))
var/mob/living/carbon/M = target
if(isliving(target))
var/mob/living/M = target
M.adjust_fire_stacks(1)
M.IgniteMob()