From 835148250c7d23660becdd15a649d37607ba7eea Mon Sep 17 00:00:00 2001 From: Neerti Date: Mon, 18 Sep 2017 04:48:43 -0400 Subject: [PATCH] Comments out fire spreading pending discussion in the future. Hopefully. --- code/modules/mob/living/living_defense.dm | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/code/modules/mob/living/living_defense.dm b/code/modules/mob/living/living_defense.dm index 299c784ec38..6f23d87f212 100644 --- a/code/modules/mob/living/living_defense.dm +++ b/code/modules/mob/living/living_defense.dm @@ -354,6 +354,9 @@ //Share fire evenly between the two mobs //Called in MobCollide() and Crossed() /mob/living/proc/spread_fire(mob/living/L) + return +// This is commented out pending discussion on Polaris. If you're a downsteam and you want people to spread fire by touching each other, feel free to uncomment this. +/* if(!istype(L)) return var/L_old_on_fire = L.on_fire @@ -368,6 +371,7 @@ L.fire_stacks /= 2 fire_stacks += L.fire_stacks IgniteMob() +*/ /mob/living/proc/get_cold_protection() return 0