From 85d28606ef9184e7da7f7292490f9909dfde456e Mon Sep 17 00:00:00 2001 From: "elly1989@rocketmail.com" Date: Thu, 19 Jul 2012 15:50:27 +0000 Subject: [PATCH] Reduces the rank requirements for giveruntimelog from GM to Badmin. This is so coders can log into the TG servers and pester any present admin for log access. git-svn-id: http://tgstation13.googlecode.com/svn/trunk@4113 316c924e-a436-60f5-8080-3fe189b3f50e --- code/modules/admin/admin_verbs.dm | 2 +- code/modules/admin/verbs/getlogs.dm | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/admin/admin_verbs.dm b/code/modules/admin/admin_verbs.dm index 0ad36834603..cd86afdaca8 100644 --- a/code/modules/admin/admin_verbs.dm +++ b/code/modules/admin/admin_verbs.dm @@ -216,6 +216,7 @@ verbs += /client/proc/hide_most_verbs verbs += /client/proc/jumptocoord verbs += /client/proc/deadmin_self + verbs += /client/proc/giveruntimelog //used by coders to retrieve runtime logs //verbs += /client/proc/cmd_admin_godmode --Merged with view variables //verbs += /client/proc/cmd_admin_gib --Merged with view variables //verbs += /proc/togglebuildmode --Merged with view variables @@ -276,7 +277,6 @@ verbs += /client/proc/everyone_random verbs += /client/proc/only_one verbs += /client/proc/deadmin_self - verbs += /client/proc/giveruntimelog //used by coders to retrieve runtime logs verbs += /client/proc/cinematic //show a cinematic sequence verbs += /client/proc/startSinglo //Used to prevent the station from losing power while testing stuff out. verbs += /client/proc/toggle_log_hrefs diff --git a/code/modules/admin/verbs/getlogs.dm b/code/modules/admin/verbs/getlogs.dm index 2a6fe1756fa..fb69ad1fe52 100644 --- a/code/modules/admin/verbs/getlogs.dm +++ b/code/modules/admin/verbs/getlogs.dm @@ -31,7 +31,7 @@ set desc = "Give somebody access to any session logfiles saved to the /log/runtime/ folder." set category = null - if( !src.holder || holder.rank != "Game Master" ) + if( !src.holder ) src << "Only Game Masters may use this command." return