mirror of
https://github.com/Citadel-Station-13/Citadel-Station-13-RP.git
synced 2026-08-20 20:16:55 +01:00
8 lines
270 B
Plaintext
8 lines
270 B
Plaintext
/*
|
|
This state checks that the user is an admin, end of story
|
|
*/
|
|
/var/global/datum/topic_state/admin_state/admin_state = new()
|
|
|
|
/datum/topic_state/admin_state/can_use_topic(var/src_object, var/mob/user)
|
|
return check_rights(R_ADMIN, 0, user) ? UI_INTERACTIVE : UI_CLOSE
|