mirror of
https://github.com/goonstation/goonstation-2016.git
synced 2026-03-18 07:22:38 +00:00
3 lines
336 B
Plaintext
3 lines
336 B
Plaintext
#define admin_only if(!src.holder) {boutput(src, "Only administrators may use this command."); return}
|
|
#define mentor_only if(!src.mentor) {boutput(src, "Only mentors may use this command."); return}
|
|
#define usr_admin_only if(usr && usr.client && !usr.client.holder) {boutput(usr, "Only administrators may use this command."); return} |