From b398977d1661c65ccb25c40aebdc85a139104de4 Mon Sep 17 00:00:00 2001 From: Fox-McCloud Date: Thu, 11 Jun 2015 23:13:14 -0400 Subject: [PATCH] runtime fix --- code/modules/events/tgevents/anomaly_pyro.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/events/tgevents/anomaly_pyro.dm b/code/modules/events/tgevents/anomaly_pyro.dm index df4805121cd..29e2a1c1401 100644 --- a/code/modules/events/tgevents/anomaly_pyro.dm +++ b/code/modules/events/tgevents/anomaly_pyro.dm @@ -17,10 +17,10 @@ return if(IsMultiple(activeFor, 5)) newAnomaly.anomalyEffect() - + /datum/event/anomaly/anomaly_pyro/end() if(newAnomaly.loc) - explosion(get_turf(newAnomaly), -1,0,3, flame_range = 4) + explosion(get_turf(newAnomaly), -1,0,3) var/mob/living/carbon/slime/S = new/mob/living/carbon/slime(get_turf(newAnomaly)) S.colour = pick("red", "orange")