From 76e44a467917f200423c5102301082a78c5563ae Mon Sep 17 00:00:00 2001 From: "n3ophyt3@gmail.com" Date: Tue, 8 Feb 2011 03:41:01 +0000 Subject: [PATCH] Build mode now adminlogs when you enter or leave it. Not adding logging to the actual USE of it at this time because I suspect normal usage would cause a lot of logspam. git-svn-id: http://tgstation13.googlecode.com/svn/trunk@991 316c924e-a436-60f5-8080-3fe189b3f50e --- code/WorkInProgress/buildmode.dm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/code/WorkInProgress/buildmode.dm b/code/WorkInProgress/buildmode.dm index 601fd3d6949..b5aec5be03c 100644 --- a/code/WorkInProgress/buildmode.dm +++ b/code/WorkInProgress/buildmode.dm @@ -3,12 +3,14 @@ set category = "Special Verbs" if(M.client) if(M.client.buildmode) + log_admin("[key_name(usr)] has left build mode.") M.client.buildmode = 0 M.client.show_popup_menus = 1 for(var/obj/buildholder/H) if(H.cl == M.client) del(H) else + log_admin("[key_name(usr)] has entered build mode.") M.client.buildmode = 1 M.client.show_popup_menus = 0