From 7a3925aa0b690560b5c59a840ccbb7b5641954e9 Mon Sep 17 00:00:00 2001 From: terencehill Date: Tue, 26 Mar 2019 15:38:04 +0100 Subject: [PATCH] Fix compilation units --- qcsrc/common/gamemodes/gamemode/clanarena/sv_clanarena.qh | 1 + qcsrc/common/gamemodes/gamemode/freezetag/sv_freezetag.qh | 2 ++ qcsrc/server/command/sv_cmd.qh | 2 ++ 3 files changed, 5 insertions(+) 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); -- 2.39.2