diff options
author | Christopher Schwarz <lakitu7@gmail.com> | 2009-10-21 23:16:46 +0000 |
---|---|---|
committer | Tim Angus <tim@ngus.net> | 2013-01-03 00:16:59 +0000 |
commit | 4644c1e65a337db1a94208162465908e1e56a0d6 (patch) | |
tree | aa014b484cacb1c20e1505647b667516af21f386 /src/game | |
parent | aa7a0ecd771b337400b7a7f34ff5c64f678757ea (diff) |
* Don't show locations in teamchats during intermission
* Fix /destroy (devmap only) to work on marked buildables without having to use it twice
Diffstat (limited to 'src/game')
-rw-r--r-- | src/game/g_cmds.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/g_cmds.c b/src/game/g_cmds.c index 4ad07392..e67fcced 100644 --- a/src/game/g_cmds.c +++ b/src/game/g_cmds.c @@ -1682,7 +1682,7 @@ void Cmd_Destroy_f( gentity_t *ent ) } // Cancel deconstruction - if( g_markDeconstruct.integer && traceEnt->deconstruct ) + if( deconstruct && g_markDeconstruct.integer && traceEnt->deconstruct ) { traceEnt->deconstruct = qfalse; return; |