From f58b13d099cd674f3893ca19cc06139f159d79b9 Mon Sep 17 00:00:00 2001 From: oranges Date: Sat, 11 Jun 2016 13:09:25 +0000 Subject: [PATCH] Explicitly return parent value This prevents it returning false incorrectly --- code/modules/mob/living/carbon/human/life.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/carbon/human/life.dm b/code/modules/mob/living/carbon/human/life.dm index 9a19077a7a8..0c3b27ba8d1 100644 --- a/code/modules/mob/living/carbon/human/life.dm +++ b/code/modules/mob/living/carbon/human/life.dm @@ -121,7 +121,7 @@ //If have no DNA or can be Ignited, call parent handling to light user //If firestacks are high enough if(!dna || dna.species.CanIgniteMob(src)) - . = ..() + return ..() . = FALSE //No ignition /mob/living/carbon/human/ExtinguishMob()