]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/commitdiff
TEST THIS: Remove the thinkhack from ka_RespawnBall() and just execute the function...
authorunknown <samual@xonotic.org>
Thu, 25 Nov 2010 01:34:41 +0000 (20:34 -0500)
committerunknown <samual@xonotic.org>
Thu, 25 Nov 2010 01:34:41 +0000 (20:34 -0500)
qcsrc/server/mutators/gamemode_keepaway.qc

index 630f101d3773dc4b18a767e43e1634be683f3228..410326305a67096a149985b6fdf715fb91a5abec 100644 (file)
@@ -87,8 +87,9 @@ void ka_RespawnBall() // runs whenever the ball needs to be relocated
        else
        {
                // sorry, can't spawn, better luck next frame
-               self.think = ka_RespawnBall;
-               self.nextthink = time;
+               //self.think = ka_RespawnBall;
+               //self.nextthink = time;
+               ka_RespawnBall();
        }
 }