diff options
author | Christopher Schwarz <lakitu7@gmail.com> | 2009-10-23 19:17:49 +0000 |
---|---|---|
committer | Tim Angus <tim@ngus.net> | 2013-01-03 00:17:02 +0000 |
commit | 3c596928698f25af8e0fe45403a5770eac3866d1 (patch) | |
tree | 7ad5455e4e9de9a6f7dabf15ae29ba416af832ac /src/game/g_buildable.c | |
parent | 906e735463a53d107199634a52e3ff841a1a3d4a (diff) |
* Trivial fix to r1854 (Rezyn)
Diffstat (limited to 'src/game/g_buildable.c')
-rw-r--r-- | src/game/g_buildable.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/g_buildable.c b/src/game/g_buildable.c index 9835bbbf..fb2047f5 100644 --- a/src/game/g_buildable.c +++ b/src/game/g_buildable.c @@ -2542,7 +2542,7 @@ void HMGTurret_Think( gentity_t *self ) { // if power loss drop turret if( self->spawned && - HMGTurret_State( self, MGT_STATE_INACTIVE ) ); + HMGTurret_State( self, MGT_STATE_INACTIVE ) ) return; self->nextthink = level.time + POWER_REFRESH_TIME; |