From 999320c83474af63b7357677df7055f0495da328 Mon Sep 17 00:00:00 2001 From: Tim Angus Date: Sat, 25 Aug 2001 16:07:22 +0000 Subject: Stupid Stupid bug fix --- src/game/g_buildable.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/game/g_buildable.c b/src/game/g_buildable.c index 00f911c5..e7093ca8 100644 --- a/src/game/g_buildable.c +++ b/src/game/g_buildable.c @@ -608,7 +608,7 @@ Called when a floatmine is triggered void HFM_Touch( gentity_t *self, gentity_t *other, trace_t *trace ) { //can't blow up twice - if( self->health > 0 ) + if( self->health <= 0 ) return; //go boom -- cgit