Skip to content
Closed
Show file tree
Hide file tree
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
1 change: 0 additions & 1 deletion code/game/turfs/open_space.dm
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ GLOBAL_DATUM_INIT(openspace_backdrop_one_for_all, /atom/movable/openspace_backdr
mouse_opacity = MOUSE_OPACITY_TRANSPARENT

/turf/open_space
weedable = NOT_WEEDABLE
name = "open space"
icon_state = "transparent"
baseturfs = /turf/open_space
Expand Down
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