mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-10 02:09:41 +00:00
8 lines
293 B
Plaintext
8 lines
293 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|R_EVENT, 0, user) ? STATUS_INTERACTIVE : STATUS_CLOSE
|