From 06ae6cde0912894e761d90bc81285ad62c8e8316 Mon Sep 17 00:00:00 2001 From: kevinz000 <2003111+kevinz000@users.noreply.github.com> Date: Thu, 14 Nov 2019 01:39:42 -0700 Subject: [PATCH] Update code/datums/weather/weather_types/radiation_storm.dm Co-Authored-By: Ghom <42542238+Ghommie@users.noreply.github.com> --- 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 a8cb8f4307..0d763aa5ad 100644 --- a/code/datums/weather/weather_types/radiation_storm.dm +++ b/code/datums/weather/weather_types/radiation_storm.dm @@ -32,7 +32,7 @@ /datum/weather/rad_storm/weather_act(mob/living/L) var/resist = L.getarmor(null, "rad") var/ratio = 1 - (min(resist, 100) / 100) - L.rad_act(radiation_intensity * percent) + L.rad_act(radiation_intensity * ratio) /datum/weather/rad_storm/end() if(..())