Iceblock flora generation fixes (#83450)

Fixes #83438

🆑 ShizCalev
fix: Trees will no longer be growing through railings on forest planets
fix: Trees/plants will no longer grow through wood pathways on Icebox
fix: Railings will no longer appear ontop of rock walls on icebox
/🆑

Old:

![image](https://github.com/tgstation/tgstation/assets/6209658/094c1708-ac4a-4e1a-acff-9d308a376476)

Fixed:

![image](https://github.com/tgstation/tgstation/assets/6209658/16c0af8b-4293-4b53-98b7-14093244447a)
This commit is contained in:
Afevis
2024-05-29 22:05:49 +02:00
committed by GitHub
parent a35d13fca1
commit 54f9ea034c
9 changed files with 98 additions and 43 deletions
+9
View File
@@ -586,6 +586,15 @@ INITIALIZE_IMMEDIATE(/obj/effect/mapping_helpers/no_lava)
var/turf/T = get_turf(src)
T.turf_flags |= NO_LAVA_GEN
INITIALIZE_IMMEDIATE(/obj/effect/mapping_helpers/no_atoms_ontop)
/obj/effect/mapping_helpers/no_atoms_ontop
icon_state = "no_atoms_ontop"
/obj/effect/mapping_helpers/no_atoms_ontop/Initialize(mapload)
. = ..()
var/turf/loc_turf = get_turf(src)
loc_turf.turf_flags |= TURF_BLOCKS_POPULATE_TERRAIN_FLORAFEATURES
///Helpers used for injecting stuff into atoms on the map.
/obj/effect/mapping_helpers/atom_injector
name = "Atom Injector"