Update code/datums/weather/weather_types/radiation_storm.dm

Co-Authored-By: Ghom <42542238+Ghommie@users.noreply.github.com>
This commit is contained in:
kevinz000
2019-11-14 01:39:42 -07:00
committed by GitHub
parent 690d6f90ec
commit 06ae6cde09
@@ -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(..())