]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blobdiff - qcsrc/server/round_handler.qc
Rename gameover to game_stopped as it makes more sense now. Proper game over check...
[xonotic/xonotic-data.pk3dir.git] / qcsrc / server / round_handler.qc
index 063c12abb0aa8f67dd25c600ab70512251194589..6a18a6b5b434952d5b63e8a9556b0777040a71fd 100644 (file)
@@ -12,8 +12,8 @@ void round_handler_Think(entity this)
                return;
        }
 
-       if (gameover)
-               gameover = false;
+       if (game_stopped)
+               game_stopped = false;
 
        if (intermission_running)
        {
@@ -59,7 +59,7 @@ void round_handler_Think(entity this)
                        // schedule a new round
                        this.wait = true;
                        this.nextthink = time + this.delay;
-                       gameover = true;
+                       game_stopped = true;
                }
                else
                {