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 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