mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-01-05 22:43:46 +00:00
* Merge pull request #54048 from nicbn/tank-frames Adds tank holders * Adds tank holders Co-authored-by: ShizCalev <ShizCalev@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
|