mirror of
https://github.com/SPLURT-Station/S.P.L.U.R.T-Station-13.git
synced 2025-12-30 11:45:14 +00:00
* enjoy * Update shuttles.dm sowwy Co-authored-by: Maksxpl <18237380+maksxpl@users.noreply.github.com>
11 lines
387 B
Plaintext
11 lines
387 B
Plaintext
/// Container item, an item which can be stored by specialized containers.
|
|
/datum/component/container_item
|
|
|
|
/datum/component/container_item/Initialize()
|
|
. = ..()
|
|
RegisterSignal(parent, COMSIG_CONTAINER_TRY_ATTACH, .proc/try_attach)
|
|
|
|
/// Called when parent is added to the container.
|
|
/datum/component/container_item/proc/try_attach(datum/source, atom/container, mob/user)
|
|
return FALSE
|