Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Allow Surgery, construction small puddles. #6340

Closed
23 changes: 23 additions & 0 deletions code/game/turfs/floors/desert.dm
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,11 @@
/turf/open/desert/desert_shore/desert_shore1
name = "shore"
icon_state = "shore1"

/turf/open/desert/desert_shore/desert_shore1/can_surgery
allow_construction = TRUE
supports_surgery = TRUE

/*
/turf/open/desert/desert_shore/desert_shore2
name = "shore"
Expand All @@ -139,12 +144,26 @@
/turf/open/desert/desert_shore/shore_edge1
name = "shore"
icon_state = "shore_edge1"

/turf/open/desert/desert_shore/shore_edge1/can_surgery
allow_construction = TRUE
supports_surgery = TRUE

/turf/open/desert/desert_shore/shore_corner1
name = "shore"
icon_state = "shore_corner1"

/turf/open/desert/desert_shore/shore_corner1/can_surgery
allow_construction = TRUE
supports_surgery = TRUE

/turf/open/desert/desert_shore/shore_corner2
name = "shore"
icon_state = "shore_corner2"

/turf/open/desert/desert_shore/shore_corner2/can_surgery
allow_construction = TRUE
supports_surgery = TRUE

//Desert Waterway
/turf/open/desert/waterway
Expand Down Expand Up @@ -236,6 +255,10 @@
/turf/open/gm/river/desert/shallow
icon_state = "shallow"
icon_overlay = "_shallow"

/turf/open/gm/river/desert/shallow/can_surgery
allow_construction = TRUE
supports_surgery = TRUE

/turf/open/gm/river/desert/shallow/covered
covered = 1
Expand Down
16 changes: 16 additions & 0 deletions code/game/turfs/open.dm
Original file line number Diff line number Diff line change
Expand Up @@ -468,6 +468,10 @@
baseturfs = /turf/open/gm/river
supports_surgery = FALSE
minimap_color = MINIMAP_WATER

/turf/open/gm/river/can_surgery
allow_construction = TRUE
supports_surgery = TRUE

/turf/open/gm/river/Initialize(mapload, ...)
. = ..()
Expand Down Expand Up @@ -605,6 +609,10 @@
icon_state = "beach"
baseturfs = /turf/open/gm/coast
supports_surgery = FALSE

/turf/open/gm/coast/can_surgery
allow_construction = TRUE
supports_surgery = TRUE

/turf/open/gm/coast/north

Expand All @@ -619,6 +627,10 @@

/turf/open/gm/coast/beachcorner
icon_state = "beachcorner"

/turf/open/gm/coast/beachcorner/can_surgery
allow_construction = TRUE
supports_surgery = TRUE

/turf/open/gm/coast/beachcorner/north_west

Expand All @@ -633,6 +645,10 @@

/turf/open/gm/coast/beachcorner2
icon_state = "beachcorner2"

/turf/open/gm/coast/beachcorner2/can_surgery
allow_construction = TRUE
supports_surgery = TRUE

/turf/open/gm/coast/beachcorner2/north_west

Expand Down
Loading
Loading