mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-01-10 01:22:41 +00:00
13 lines
303 B
Plaintext
13 lines
303 B
Plaintext
/**
|
|
* tgui state: conscious_state
|
|
*
|
|
* Only checks if the user is conscious.
|
|
*/
|
|
|
|
GLOBAL_DATUM_INIT(conscious_state, /datum/ui_state/conscious_state, new)
|
|
|
|
/datum/ui_state/conscious_state/can_use_topic(src_object, mob/user)
|
|
if(user.stat == CONSCIOUS)
|
|
return STATUS_INTERACTIVE
|
|
return STATUS_CLOSE
|