mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-01-14 10:53:42 +00:00
13 lines
294 B
Plaintext
13 lines
294 B
Plaintext
/**
|
|
* tgui state: conscious_state
|
|
*
|
|
* Only checks if the user is conscious.
|
|
**/
|
|
|
|
/var/global/datum/ui_state/conscious_state/conscious_state = new()
|
|
|
|
/datum/ui_state/conscious_state/can_use_topic(src_object, mob/user)
|
|
if(user.stat == CONSCIOUS)
|
|
return UI_INTERACTIVE
|
|
return UI_CLOSE
|