From ccab45c495f4fcd7faf7e5f474a14fc43b6d47ec Mon Sep 17 00:00:00 2001 From: Markolie Date: Tue, 15 Sep 2015 05:21:03 +0200 Subject: [PATCH] Mods have notes access --- code/modules/admin/admin.dm | 4 ++-- code/modules/admin/admin_verbs.dm | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/code/modules/admin/admin.dm b/code/modules/admin/admin.dm index 7a17941ad1a..6cb0e7c062c 100644 --- a/code/modules/admin/admin.dm +++ b/code/modules/admin/admin.dm @@ -216,7 +216,7 @@ var/global/nologevent = 0 set category = "Admin" set name = "Player Notes" - if(!check_rights(R_ADMIN)) + if(!check_rights(R_MOD)) return show_note() @@ -225,7 +225,7 @@ var/global/nologevent = 0 set category = "Admin" set name = "Show Player Notes" - if(!check_rights(R_ADMIN)) + if(!check_rights(R_MOD)) return show_note(key) diff --git a/code/modules/admin/admin_verbs.dm b/code/modules/admin/admin_verbs.dm index 77b7ae94bda..0164e814864 100644 --- a/code/modules/admin/admin_verbs.dm +++ b/code/modules/admin/admin_verbs.dm @@ -175,7 +175,7 @@ var/list/admin_verbs_mod = list( /datum/admins/proc/PlayerNotes, /client/proc/admin_ghost, /*allows us to ghost/reenter body at will*/ /client/proc/cmd_mod_say, - /datum/admins/proc/show_player_info, + /datum/admins/proc/show_player_notes, /client/proc/player_panel_new, /client/proc/dsay, /datum/admins/proc/show_player_panel,