From 4bb30bab66a564b459f4e62b72f36b0e16ad74c3 Mon Sep 17 00:00:00 2001 From: TimePath Date: Wed, 30 Dec 2015 22:40:27 +1100 Subject: [PATCH] Update more include paths to simplify log output --- qcsrc/client/commands/cl_cmd.qc | 2 +- qcsrc/client/teamradar.qc | 2 +- qcsrc/client/view.qc | 6 +++--- qcsrc/common/animdecide.qc | 2 +- qcsrc/common/mapinfo.qc | 4 ++-- qcsrc/common/notifications.qc | 2 +- qcsrc/common/notifications.qh | 2 +- qcsrc/common/playerstats.qc | 2 +- qcsrc/common/t_items.qc | 12 ++++++------ qcsrc/common/util.qc | 4 ++-- qcsrc/common/weapons/all.qh | 2 +- qcsrc/server/_all.qh | 6 +++--- 12 files changed, 23 insertions(+), 23 deletions(-) diff --git a/qcsrc/client/commands/cl_cmd.qc b/qcsrc/client/commands/cl_cmd.qc index 2b52a9fab..6481d6b1d 100644 --- a/qcsrc/client/commands/cl_cmd.qc +++ b/qcsrc/client/commands/cl_cmd.qc @@ -8,7 +8,7 @@ #include "../autocvars.qh" #include "../defs.qh" -#include "../hud/all.qh" +#include #include "../main.qh" #include "../mapvoting.qh" #include "../miscfunctions.qh" diff --git a/qcsrc/client/teamradar.qc b/qcsrc/client/teamradar.qc index 266435411..a745bcd31 100644 --- a/qcsrc/client/teamradar.qc +++ b/qcsrc/client/teamradar.qc @@ -2,7 +2,7 @@ #include "hud/all.qh" -#include "../common/mutators/mutator/waypoints/all.qh" +#include #include "../lib/csqcmodel/interpolate.qh" diff --git a/qcsrc/client/view.qc b/qcsrc/client/view.qc index a05407e90..207a46883 100644 --- a/qcsrc/client/view.qc +++ b/qcsrc/client/view.qc @@ -12,14 +12,14 @@ #include "../common/constants.qh" #include "../common/debug.qh" #include "../common/mapinfo.qh" -#include "../common/gamemodes/all.qh" +#include #include "../common/physics/player.qh" #include "../common/stats.qh" #include "../common/triggers/target/music.qh" #include "../common/teams.qh" -#include "../common/vehicles/all.qh" -#include "../common/weapons/all.qh" +#include +#include #include "../common/viewloc.qh" #include "../common/minigames/cl_minigames.qh" #include "../common/minigames/cl_minigames_hud.qh" diff --git a/qcsrc/common/animdecide.qc b/qcsrc/common/animdecide.qc index b2cc26fd9..f8561b53c 100644 --- a/qcsrc/common/animdecide.qc +++ b/qcsrc/common/animdecide.qc @@ -1,6 +1,6 @@ #include "animdecide.qh" -#include "monsters/all.qh" +#include #if defined(SVQC) #include "util.qh" diff --git a/qcsrc/common/mapinfo.qc b/qcsrc/common/mapinfo.qc index b4cd54184..56dcce489 100644 --- a/qcsrc/common/mapinfo.qc +++ b/qcsrc/common/mapinfo.qc @@ -1,12 +1,12 @@ #if defined(CSQC) #include "../client/defs.qh" #include "util.qh" - #include "weapons/all.qh" + #include #include "mapinfo.qh" #elif defined(MENUQC) #elif defined(SVQC) #include "util.qh" - #include "monsters/all.qh" + #include #include "mapinfo.qh" #endif diff --git a/qcsrc/common/notifications.qc b/qcsrc/common/notifications.qc index 6181edcec..b8f235e90 100644 --- a/qcsrc/common/notifications.qc +++ b/qcsrc/common/notifications.qc @@ -8,7 +8,7 @@ #include "../server/constants.qh" #include "../server/defs.qh" #include "notifications.qh" - #include "../server/mutators/all.qh" + #include #endif // ================================================ diff --git a/qcsrc/common/notifications.qh b/qcsrc/common/notifications.qh index a3725cbd6..1b27775d4 100644 --- a/qcsrc/common/notifications.qh +++ b/qcsrc/common/notifications.qh @@ -1,7 +1,7 @@ #ifndef NOTIFICATIONS_H #define NOTIFICATIONS_H -#include "command/all.qh" +#include #include "constants.qh" #include "teams.qh" diff --git a/qcsrc/common/playerstats.qc b/qcsrc/common/playerstats.qc index ffd4fca71..3d10ca8b5 100644 --- a/qcsrc/common/playerstats.qc +++ b/qcsrc/common/playerstats.qc @@ -3,7 +3,7 @@ #elif defined(SVQC) #include "constants.qh" #include "util.qh" - #include "weapons/all.qh" + #include #include "../server/weapons/accuracy.qh" #include "../server/defs.qh" #include "playerstats.qh" diff --git a/qcsrc/common/t_items.qc b/qcsrc/common/t_items.qc index da360c80d..97fc76c09 100644 --- a/qcsrc/common/t_items.qc +++ b/qcsrc/common/t_items.qc @@ -7,26 +7,26 @@ #include "../server/bot/bot.qh" #include "../server/bot/waypoints.qh" - #include "../server/mutators/all.qh" + #include #include "../server/weapons/common.qh" #include "../server/weapons/selection.qh" #include "../server/weapons/weaponsystem.qh" #include "constants.qh" - #include "deathtypes/all.qh" - #include "notifications.qh" + #include + #include #include "triggers/subs.qh" #include "util.qh" - #include "monsters/all.qh" + #include - #include "weapons/all.qh" + #include #include "../lib/warpzone/util_server.qh" #elif defined(CSQC) #include "physics/movetypes/movetypes.qh" - #include "weapons/all.qh" + #include #include "../lib/csqcmodel/cl_model.qh" #include "../lib/csqcmodel/common.qh" #endif diff --git a/qcsrc/common/util.qc b/qcsrc/common/util.qc index c81b1a576..52df2b647 100644 --- a/qcsrc/common/util.qc +++ b/qcsrc/common/util.qc @@ -6,7 +6,7 @@ #include "../client/mutators/events.qh" #include "mapinfo.qh" #include "notifications.qh" - #include "deathtypes/all.qh" + #include #elif defined(MENUQC) #elif defined(SVQC) #include "constants.qh" @@ -14,7 +14,7 @@ #include "../server/defs.qh" #include "../server/mutators/events.qh" #include "notifications.qh" - #include "deathtypes/all.qh" + #include #include "mapinfo.qh" #endif diff --git a/qcsrc/common/weapons/all.qh b/qcsrc/common/weapons/all.qh index 0438d42e0..4819f2c25 100644 --- a/qcsrc/common/weapons/all.qh +++ b/qcsrc/common/weapons/all.qh @@ -21,7 +21,7 @@ WepSet ReadWepSet(); #ifndef MENUQC #include "calculations.qh" -#include "../models/all.qh" +#include #endif #include "../util.qh" diff --git a/qcsrc/server/_all.qh b/qcsrc/server/_all.qh index 3636f8984..2b67138bc 100644 --- a/qcsrc/server/_all.qh +++ b/qcsrc/server/_all.qh @@ -42,9 +42,9 @@ const string STR_OBSERVER = "observer"; // NOTE: FOR_EACH_MONSTER deprecated! Use the following instead: FOREACH_ENTITY_FLAGS(flags, FL_MONSTER, LAMBDA(yourcode)); -#include "../common/effects/all.qh" -#include "../common/models/all.qh" -#include "../common/sounds/all.qh" +#include +#include +#include #include "autocvars.qh" #include "constants.qh" -- 2.39.2