Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions code/modules/desert_dam/filtration/filtration.dm
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand All @@ -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()
Expand Down
Loading