]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/commitdiff
Some comments I forgot
authorMircea Kitsune <sonichedgehog_hyperblast00@yahoo.com>
Mon, 4 Oct 2010 20:16:45 +0000 (23:16 +0300)
committerMircea Kitsune <sonichedgehog_hyperblast00@yahoo.com>
Mon, 4 Oct 2010 20:16:45 +0000 (23:16 +0300)
qcsrc/server/w_minelayer.qc

index f1467e7765e1090e0aec6827f24ef6d927fd5b5e..b15872e2912200cd1fccbe7f44203fcab233110b 100644 (file)
@@ -138,7 +138,7 @@ void W_Mine_Think (void)
                return;
        }
 
-       // set the mine for detonation when a foe gets too close
+       // set the mine for detonation when a foe gets close enough
        head = findradius(self.origin, cvar("g_balance_minelayer_proximityradius"));
        while(head)
        {
@@ -152,7 +152,7 @@ void W_Mine_Think (void)
                head = head.chain;
        }
 
-       // explode if it's time to
+       // explode if it's time
        if(self.mine_time && time >= self.mine_time)
                W_Mine_ProximityExplode();