diff --git a/code/datums/weather/weather.dm b/code/datums/weather/weather.dm index 01b9facbb8..1e44e9b69d 100644 --- a/code/datums/weather/weather.dm +++ b/code/datums/weather/weather.dm @@ -61,7 +61,7 @@ if(A.z in impacted_z_levels) impacted_areas |= A weather_duration = rand(weather_duration_lower, weather_duration_upper) - START_PROCESSING(SSweather, src) + SSweather.processing += src //not processing subsystem update_areas() for(var/M in GLOB.player_list) var/turf/mob_turf = get_turf(M) @@ -104,7 +104,7 @@ if(stage == END_STAGE) return 1 stage = END_STAGE - STOP_PROCESSING(SSweather, src) + SSweather.processing -= src //not processing subsystem update_areas() /datum/weather/proc/can_weather_act(mob/living/L) //Can this weather impact a mob? diff --git a/tgstation.dme b/tgstation.dme index 927027d448..a747c823db 100755 --- a/tgstation.dme +++ b/tgstation.dme @@ -152,7 +152,6 @@ #include "code\__HELPERS\type2type_vr.dm" #include "code\__HELPERS\typelists.dm" #include "code\__HELPERS\unsorted.dm" -#include "code\__HELPERS\vector.dm" #include "code\__HELPERS\view.dm" #include "code\__HELPERS\sorts\__main.dm" #include "code\__HELPERS\sorts\InsertSort.dm"