Files
S.P.L.U.R.T-Station-13/modular_splurt/code/datums/elements/smalltalk.dm
BongaTheProto 8b7fa8233c emotes and quirks
ok maybe it happened... but 40 votes? in only 2 days??
2022-06-04 18:46:02 -05:00

20 lines
561 B
Plaintext

//For small players and such
/datum/element/smalltalk
element_flags = ELEMENT_DETACH
/datum/element/smalltalk/Attach(datum/target, force = FALSE)
. = ..()
if(!(isliving(target) || (force && istype(target, /atom/movable))))
return ELEMENT_INCOMPATIBLE
RegisterSignal(target, COMSIG_MOB_SAY, .proc/handle_speech)
/datum/element/smalltalk/Detach(datum/source, force)
. = ..()
UnregisterSignal(source, COMSIG_MOB_SAY)
/datum/element/smalltalk/proc/handle_speech(datum/source, list/speech_args)
SIGNAL_HANDLER
speech_args[SPEECH_SPANS] |= SPAN_SMALL