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.