mirror of
https://github.com/Yawn-Wider/YWPolarisVore.git
synced 2026-08-30 16:38:49 +01:00
13 lines
310 B
Plaintext
13 lines
310 B
Plaintext
/**
|
|
* tgui state: mentor_state
|
|
*
|
|
* Checks that the user is an mentor.
|
|
**/
|
|
|
|
GLOBAL_DATUM_INIT(tgui_mentor_state, /datum/tgui_state/mentor_state, new)
|
|
|
|
/datum/tgui_state/mentor_state/can_use_topic(src_object, mob/user)
|
|
if(has_mentor_powers(user.client))
|
|
return STATUS_INTERACTIVE
|
|
return STATUS_CLOSE
|