From: Mario Date: Sun, 10 Jun 2018 07:59:10 +0000 (+1000) Subject: Fix another random include error X-Git-Tag: xonotic-v0.8.5~2086 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=0fb3d509292b040b5a1a1844a81d7615ac2ffe46;p=xonotic%2Fxonotic-data.pk3dir.git Fix another random include error --- diff --git a/qcsrc/common/gamemodes/gamemode/assault/assault.qh b/qcsrc/common/gamemodes/gamemode/assault/assault.qh index dd008b43e..d949f18b3 100644 --- a/qcsrc/common/gamemodes/gamemode/assault/assault.qh +++ b/qcsrc/common/gamemodes/gamemode/assault/assault.qh @@ -2,6 +2,7 @@ #ifdef SVQC #include +#include const int ASSAULT_VALUE_INACTIVE = 1000; diff --git a/qcsrc/common/gamemodes/gamemode/keepaway/keepaway.qh b/qcsrc/common/gamemodes/gamemode/keepaway/keepaway.qh index 187d115e3..a4615c146 100644 --- a/qcsrc/common/gamemodes/gamemode/keepaway/keepaway.qh +++ b/qcsrc/common/gamemodes/gamemode/keepaway/keepaway.qh @@ -2,6 +2,7 @@ #ifdef SVQC #include +#include void ka_Initialize(); REGISTER_MUTATOR(ka, false) diff --git a/qcsrc/common/gamemodes/gamemode/lms/lms.qh b/qcsrc/common/gamemodes/gamemode/lms/lms.qh index fbb837b0c..288922049 100644 --- a/qcsrc/common/gamemodes/gamemode/lms/lms.qh +++ b/qcsrc/common/gamemodes/gamemode/lms/lms.qh @@ -2,6 +2,7 @@ #ifdef SVQC #include +#include .float lms_spectate_warning; #define autocvar_g_lms_lives_override cvar("g_lms_lives_override") void lms_Initialize();