mirror of
https://github.com/SPLURT-Station/S.P.L.U.R.T-Station-13.git
synced 2026-08-28 23:26:43 +01:00
followup
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
/obj/item/clothing/head/mob_holder/micro/verb/interact_with()
|
||||
set name = "Interact With"
|
||||
set desc = "Perform an interaction with someone."
|
||||
set category = "IC"
|
||||
set src in view(usr.client)
|
||||
|
||||
var/datum/component/interaction_menu_granter/menu = usr.GetComponent(/datum/component/interaction_menu_granter)
|
||||
if(!menu)
|
||||
to_chat(usr, span_warning("You must have done something really bad to not have an interaction component."))
|
||||
return
|
||||
|
||||
if(!src)
|
||||
to_chat(usr, span_warning("Your interaction target is gone!"))
|
||||
return
|
||||
menu.open_menu(usr, held_mob)
|
||||
@@ -4481,6 +4481,7 @@
|
||||
#include "modular_splurt\code\datums\components\storage\concrete\pockets.dm"
|
||||
#include "modular_splurt\code\datums\elements\crawl_under.dm"
|
||||
#include "modular_splurt\code\datums\elements\flavor_text.dm"
|
||||
#include "modular_splurt\code\datums\elements\holder_micro.dm"
|
||||
#include "modular_splurt\code\datums\elements\mob_holder.dm"
|
||||
#include "modular_splurt\code\datums\elements\smalltalk.dm"
|
||||
#include "modular_splurt\code\datums\elements\spooky.dm"
|
||||
|
||||
Reference in New Issue
Block a user