From 4e3290868ca93cd8283fe9ea1453a3c3d2d61729 Mon Sep 17 00:00:00 2001 From: SkyratBot <59378654+SkyratBot@users.noreply.github.com> Date: Fri, 27 May 2022 00:21:50 +0200 Subject: [PATCH] [MIRROR] lattice is walkable on chasm [MDB IGNORE] (#13909) * lattice is walkable on chasm (#67294) * lattice is walkable on chasm Co-authored-by: Mooshimi <85910816+Mooshimi@users.noreply.github.com> --- code/datums/components/chasm.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/datums/components/chasm.dm b/code/datums/components/chasm.dm index 38585d8586a..c13f35ef004 100644 --- a/code/datums/components/chasm.dm +++ b/code/datums/components/chasm.dm @@ -45,7 +45,7 @@ /datum/component/chasm/proc/is_safe() //if anything matching this typecache is found in the chasm, we don't drop things - var/static/list/chasm_safeties_typecache = typecacheof(list(/obj/structure/lattice/catwalk, /obj/structure/stone_tile)) + var/static/list/chasm_safeties_typecache = typecacheof(list(/obj/structure/lattice, /obj/structure/lattice/catwalk, /obj/structure/stone_tile)) var/atom/parent = src.parent var/list/found_safeties = typecache_filter_list(parent.contents, chasm_safeties_typecache)