[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>
This commit is contained in:
SkyratBot
2022-05-26 23:21:50 +01:00
committed by GitHub
co-authored by Mooshimi
parent e91796c7f6
commit 4e3290868c
+1 -1
View File
@@ -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)