1d60873949
Also, rename the base state file.
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
|