Files
S.P.L.U.R.T-Station-13/modular_splurt/code/datums/components/chasm.dm

10 lines
224 B
Plaintext

/datum/component/chasm
var/static/list/forbidden_extra = list(
/obj/effect/crystalline_reentry
)
/datum/component/chasm/droppable(atom/movable/AM)
if(is_type_in_typecache(AM, forbidden_extra))
return FALSE
. = ..()