Files
Bubberstation/code/modules/nano/states/admin.dm
Bjorn Neergaard 1d60873949 Fix NanoUI for admin ghosts.
Also, rename the base state file.
2015-12-02 12:53:36 -06:00

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