From 53bfbacbe0a9fbaacc2055891c88b32f5afba46f Mon Sep 17 00:00:00 2001 From: kevinz000 <2003111+kevinz000@users.noreply.github.com> Date: Tue, 12 Nov 2019 23:48:39 -0700 Subject: [PATCH] Update radiation_storm.dm --- code/datums/weather/weather_types/radiation_storm.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/datums/weather/weather_types/radiation_storm.dm b/code/datums/weather/weather_types/radiation_storm.dm index fb7ae0aa8e..bc3f438e12 100644 --- a/code/datums/weather/weather_types/radiation_storm.dm +++ b/code/datums/weather/weather_types/radiation_storm.dm @@ -31,7 +31,7 @@ /datum/weather/rad_storm/weather_act(mob/living/L) var/resist = L.getarmor(null, "rad") - L.rad_act(150 / resist) + L.rad_act(radiation_intensity / resist) /datum/weather/rad_storm/end() if(..())