From 0fb3d509292b040b5a1a1844a81d7615ac2ffe46 Mon Sep 17 00:00:00 2001 From: Mario Date: Sun, 10 Jun 2018 17:59:10 +1000 Subject: [PATCH] Fix another random include error --- qcsrc/common/gamemodes/gamemode/assault/assault.qh | 1 + qcsrc/common/gamemodes/gamemode/keepaway/keepaway.qh | 1 + qcsrc/common/gamemodes/gamemode/lms/lms.qh | 1 + 3 files changed, 3 insertions(+) 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(); -- 2.39.2