From 747b61a2cc6049d04ffa2e8ebd409189c6f5bc5b Mon Sep 17 00:00:00 2001 From: Ectlar <74610781+Ectlar@users.noreply.github.com> Date: Wed, 1 May 2024 19:38:39 +0100 Subject: [PATCH] Lattice Change (#2100) * Lattice Health Buff A health buff for the Lattice/Catwalks to dissuade people from just breaking them every single time in RCA. * Flag change Requested change by Gboster, makes more sense than just increasing the health on the latices too. --- code/game/objects/structures/lattice.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/objects/structures/lattice.dm b/code/game/objects/structures/lattice.dm index 6c52772ca8f1..d6df3036a795 100644 --- a/code/game/objects/structures/lattice.dm +++ b/code/game/objects/structures/lattice.dm @@ -10,7 +10,7 @@ max_integrity = 50 layer = LATTICE_LAYER //under pipes plane = FLOOR_PLANE - obj_flags = CAN_BE_HIT | BLOCK_Z_OUT_DOWN + obj_flags = BLOCK_Z_OUT_DOWN | NODECONSTRUCT_1 | INDESTRUCTIBLE smoothing_flags = SMOOTH_BITMASK smoothing_groups = list(SMOOTH_GROUP_LATTICE) canSmoothWith = list(SMOOTH_GROUP_LATTICE, SMOOTH_GROUP_OPEN_FLOOR, SMOOTH_GROUP_WALLS)