From: terencehill Date: Tue, 26 Mar 2019 14:38:04 +0000 (+0100) Subject: Fix compilation units X-Git-Tag: xonotic-v0.8.5~1404^2 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=7a3925aa0b690560b5c59a840ccbb7b5641954e9;p=xonotic%2Fxonotic-data.pk3dir.git Fix compilation units --- diff --git a/qcsrc/common/gamemodes/gamemode/clanarena/sv_clanarena.qh b/qcsrc/common/gamemodes/gamemode/clanarena/sv_clanarena.qh index c4755feee..e383687fc 100644 --- a/qcsrc/common/gamemodes/gamemode/clanarena/sv_clanarena.qh +++ b/qcsrc/common/gamemodes/gamemode/clanarena/sv_clanarena.qh @@ -3,6 +3,7 @@ #include #include #include +#include int autocvar_g_ca_point_limit; int autocvar_g_ca_point_leadlimit; diff --git a/qcsrc/common/gamemodes/gamemode/freezetag/sv_freezetag.qh b/qcsrc/common/gamemodes/gamemode/freezetag/sv_freezetag.qh index d637ae46f..df138a93d 100644 --- a/qcsrc/common/gamemodes/gamemode/freezetag/sv_freezetag.qh +++ b/qcsrc/common/gamemodes/gamemode/freezetag/sv_freezetag.qh @@ -1,6 +1,8 @@ #pragma once #include +#include + int autocvar_g_freezetag_point_limit; int autocvar_g_freezetag_point_leadlimit; bool autocvar_g_freezetag_team_spawns; diff --git a/qcsrc/server/command/sv_cmd.qh b/qcsrc/server/command/sv_cmd.qh index d9eb04395..bf0dafa9c 100644 --- a/qcsrc/server/command/sv_cmd.qh +++ b/qcsrc/server/command/sv_cmd.qh @@ -5,6 +5,8 @@ // ================================================= bool shuffleteams_on_reset_map; +void shuffleteams(); + string GotoMap(string m); void race_deleteTime(string map, float pos);