From a363b559689a912ae95ee6ddaa75fc3be388f99b Mon Sep 17 00:00:00 2001 From: Bloop Date: Tue, 31 Jan 2023 08:58:11 -0500 Subject: [PATCH] [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. --- .../modules/decay_subsystem/code/decay_turf_handling.dm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/modular_skyrat/modules/decay_subsystem/code/decay_turf_handling.dm b/modular_skyrat/modules/decay_subsystem/code/decay_turf_handling.dm index 6b5bebf199f..847aa205e93 100644 --- a/modular_skyrat/modules/decay_subsystem/code/decay_turf_handling.dm +++ b/modular_skyrat/modules/decay_subsystem/code/decay_turf_handling.dm @@ -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.