diff options
Diffstat (limited to 'src/game/g_buildable.c')
-rw-r--r-- | src/game/g_buildable.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/src/game/g_buildable.c b/src/game/g_buildable.c index dd4a9672..33424d61 100644 --- a/src/game/g_buildable.c +++ b/src/game/g_buildable.c @@ -1656,13 +1656,10 @@ Use for human power repeater */ void HRepeater_Use( gentity_t *self, gentity_t *other, gentity_t *activator ) { - if( self->health <= 0 ) - return; - - if( !self->spawned ) + if( self->health <= 0 || !self->spawned ) return; - if( other ) + if( other && other->client ) G_GiveClientMaxAmmo( other, qtrue ); } |