From 362a1449435af9a7edfd4a2bdba1b87e9eab3331 Mon Sep 17 00:00:00 2001 From: vincibrv Date: Mon, 5 May 2025 13:15:08 +0200 Subject: [PATCH] fixes filtration --- code/modules/desert_dam/filtration/filtration.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/desert_dam/filtration/filtration.dm b/code/modules/desert_dam/filtration/filtration.dm index 458c81697a53..06d5e7af5131 100644 --- a/code/modules/desert_dam/filtration/filtration.dm +++ b/code/modules/desert_dam/filtration/filtration.dm @@ -251,7 +251,7 @@ Each var depends on others dispersing = 0 animate(src, alpha = initial(alpha), time = 60) var/turf/location = loc - location.weedable = initial(location.weedable) + location.is_weedable = initial(location.is_weedable) /obj/effect/blocker/water/proc/disperse(from_dir) @@ -277,7 +277,7 @@ Each var depends on others animate(src, alpha= flooded_alpha, easing = BACK_EASING | EASE_OUT , time= 40) update_icon() var/turf/location = loc - location.weedable = NOT_WEEDABLE + location.is_weedable = NOT_WEEDABLE /obj/effect/blocker/water/toxic/disperse()