mirror of
https://github.com/Citadel-Station-13/Citadel-Station-13-RP.git
synced 2026-08-23 20:26:29 +01:00
8 lines
261 B
Plaintext
8 lines
261 B
Plaintext
/*
|
|
This state only checks if user is conscious.
|
|
*/
|
|
/var/global/datum/topic_state/conscious_state/conscious_state = new()
|
|
|
|
/datum/topic_state/conscious_state/can_use_topic(var/src_object, var/mob/user)
|
|
return user.stat == CONSCIOUS ? UI_INTERACTIVE : UI_CLOSE
|