mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-10 10:12:45 +00:00
This should mean that the law manager is available even for carded AIs, even with the wireless interface disabled. Fixes #11139.
8 lines
269 B
Plaintext
8 lines
269 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 ? STATUS_INTERACTIVE : STATUS_CLOSE
|