mirror of
https://github.com/SPLURT-Station/S.P.L.U.R.T-Station-13.git
synced 2025-12-16 21:02:35 +00:00
https://github.com/quotefox/Hyper-Station-13/pull/1513 https://github.com/quotefox/Hyper-Station-13/pull/1515 https://github.com/quotefox/Hyper-Station-13/pull/1547 https://github.com/quotefox/Hyper-Station-13/pull/1548 still gotta look into: https://github.com/quotefox/Hyper-Station-13/pull/1511
10 lines
224 B
Plaintext
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
|
|
. = ..()
|