From 560de7d5f6a9eef155f9e59ce853c454554291fc Mon Sep 17 00:00:00 2001 From: Head Date: Fri, 10 Feb 2012 20:36:30 +0100 Subject: [PATCH 1/2] crap Signed-off-by: Head --- config/dbconfig.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/dbconfig.txt b/config/dbconfig.txt index a0d6f28b7b..22ddf5d409 100644 --- a/config/dbconfig.txt +++ b/config/dbconfig.txt @@ -23,4 +23,4 @@ FEEDBACK_PASSWORD mypassword # Track population and death statistics # Comment this out to disable -ENABLE_STAT_TRACKING \ No newline at end of file +#ENABLE_STAT_TRACKING \ No newline at end of file From bff5a0fecc3b6b751fc85d5bafd625eebcb10ac9 Mon Sep 17 00:00:00 2001 From: Head Date: Fri, 10 Feb 2012 20:36:55 +0100 Subject: [PATCH 2/2] Added new shortcut for examine (ctrl + left click). --- code/game/atom_procs.dm | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/code/game/atom_procs.dm b/code/game/atom_procs.dm index 978a4679a6..8c340f1ba2 100644 --- a/code/game/atom_procs.dm +++ b/code/game/atom_procs.dm @@ -292,7 +292,10 @@ /atom/Click(location,control,params) //world << "atom.Click() on [src] by [usr] : src.type is [src.type]" - + var/list/pram = params2list(params) + if(pram["ctrl"] != null && pram["left"] != null) + src.examine() + return if(usr.client.buildmode) build_click(usr, usr.client.buildmode, location, control, params, src) return