From f57502e6898878828f10470de3527a356cc78970 Mon Sep 17 00:00:00 2001 From: Lynx Date: Thu, 28 Nov 2024 13:04:19 -0800 Subject: [PATCH] Remove Unecessary TRUE/FALSE's --- code/datums/weather/weather_types/roguetown/rain.dm | 5 ----- 1 file changed, 5 deletions(-) diff --git a/code/datums/weather/weather_types/roguetown/rain.dm b/code/datums/weather/weather_types/roguetown/rain.dm index 70882ce81..1d4aaf978 100644 --- a/code/datums/weather/weather_types/roguetown/rain.dm +++ b/code/datums/weather/weather_types/roguetown/rain.dm @@ -107,16 +107,11 @@ switch(threshold) if(0) //No coverage M.apply_status_effect(/datum/status_effect/buff/wetness/drenched) - M.is_drying = FALSE if(2) M.apply_status_effect(/datum/status_effect/buff/wetness/wet) - M.is_drying = FALSE if(4) M.apply_status_effect(/datum/status_effect/buff/wetness/damp) - M.is_drying = FALSE if(6) - M.is_wet = FALSE - M.is_drying = FALSE if(world.time < lastlightning + 66 SECONDS) return