mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2025-12-24 17:22:23 +00:00
This commit adds baystation's rigsuit system on top of our own hardsuits; Our own hardsuits still function fine and are around, but these are available to admins. Next commit will contain balancing and player implementation stuff.
11 lines
366 B
Plaintext
11 lines
366 B
Plaintext
/*
|
|
This state checks if src_object is contained anywhere in the user's inventory, including bags, etc.
|
|
*/
|
|
/var/global/datum/topic_state/deep_inventory_state/deep_inventory_state = new()
|
|
|
|
/datum/topic_state/deep_inventory_state/can_use_topic(var/src_object, var/mob/user)
|
|
if(!user.contains(src_object))
|
|
return STATUS_CLOSE
|
|
|
|
return user.shared_nano_interaction()
|