mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-01-29 18:40:42 +00:00
13 lines
330 B
Plaintext
13 lines
330 B
Plaintext
/**
|
|
* NanoUI State: admin_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(atom/movable/src_object, mob/user)
|
|
if (check_rights_for(user.client, R_ADMIN))
|
|
return NANO_INTERACTIVE
|
|
return NANO_CLOSE
|