mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2025-12-27 02:32:20 +00:00
13 lines
313 B
Plaintext
13 lines
313 B
Plaintext
/**
|
|
* tgui state: admin_state
|
|
*
|
|
* Checks that the user is an admin, end-of-story.
|
|
*/
|
|
|
|
GLOBAL_DATUM_INIT(admin_state, /datum/ui_state/admin_state, new)
|
|
|
|
/datum/ui_state/admin_state/can_use_topic(src_object, mob/user)
|
|
if(check_rights_for(user.client, R_ADMIN))
|
|
return STATUS_INTERACTIVE
|
|
return STATUS_CLOSE
|