From 148c65e46d7e8bb112f7d48cb53c0dfc471bf593 Mon Sep 17 00:00:00 2001 From: SkyratBot <59378654+SkyratBot@users.noreply.github.com> Date: Thu, 8 Oct 2020 19:08:25 +0200 Subject: [PATCH] [MIRROR] Fixes hierophant walls incorrectly smoothing (#1206) * Fixes hierophant walls not smoothing (#54231) * Fixes hierophant walls incorrectly smoothing Co-authored-by: Rohesie --- code/game/turfs/closed/_closed.dm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/code/game/turfs/closed/_closed.dm b/code/game/turfs/closed/_closed.dm index a6d2dda993a..c77a5c8ee24 100644 --- a/code/game/turfs/closed/_closed.dm +++ b/code/game/turfs/closed/_closed.dm @@ -234,3 +234,5 @@ icon = 'icons/turf/walls/hierophant_wall.dmi' icon_state = "wall" smoothing_flags = SMOOTH_CORNERS + smoothing_groups = list(SMOOTH_GROUP_HIERO_WALL) + canSmoothWith = list(SMOOTH_GROUP_HIERO_WALL)