[MODULAR] Fixes liquid carpet reagent not working due to a missing turf flag (#19017)

* Fixes some bitflag overrides that were missing a bit from the subtype

* that shouldn't be there...

* Fixes forge baking

* Revert "Fixes forge baking"

This reverts commit d074e6396b4d5a29d2ac8c45d9bfd38470c7e67b.
This commit is contained in:
Bloop
2023-01-31 13:58:11 +00:00
committed by GitHub
parent f351817527
commit a363b55968
@@ -1,14 +1,14 @@
/turf/open/floor
turf_flags = CAN_DECAY_BREAK_1 // We do it this way because we can then easily pick what we don't want to be broken.
turf_flags = IS_SOLID | CAN_DECAY_BREAK_1 // We do it this way because we can then easily pick what we don't want to be broken.
/turf/closed/wall
flags_1 = CAN_BE_DIRTY_1
/turf/open/floor/plating
turf_flags = NONE /// No breaking the plating
turf_flags = IS_SOLID /// No breaking the plating
/turf/open/floor/glass
turf_flags = NONE /// No breaking the glass (doesn't leave plating behind)
turf_flags = IS_SOLID /// No breaking the glass (doesn't leave plating behind)
/turf/open/misc/asteroid
turf_flags = NONE /// They shouldn't break and they shouldn't be dirty, it's literally already a dirty turf.