diff options
| author | Shauren <shauren.trinity@gmail.com> | 2022-02-11 21:57:45 +0100 |
|---|---|---|
| committer | Shauren <shauren.trinity@gmail.com> | 2022-02-11 21:57:45 +0100 |
| commit | d057e057d36f6052972b90eb1f4bd03263f4dab5 (patch) | |
| tree | 95ff38b79532c50ddafe2adf33afed31677579a2 /src/server/worldserver/CommandLine | |
| parent | cbcd149ce508dfe8ff508391f9e32b7dc2cfbe5c (diff) | |
Core/Misc: Optimize ChatCommand includes (include only where neccessary)
Diffstat (limited to 'src/server/worldserver/CommandLine')
| -rw-r--r-- | src/server/worldserver/CommandLine/CliRunnable.cpp | 16 |
1 files changed, 4 insertions, 12 deletions
diff --git a/src/server/worldserver/CommandLine/CliRunnable.cpp b/src/server/worldserver/CommandLine/CliRunnable.cpp index b36e9edf9d1..5263d3ba3b6 100644 --- a/src/server/worldserver/CommandLine/CliRunnable.cpp +++ b/src/server/worldserver/CommandLine/CliRunnable.cpp @@ -19,22 +19,14 @@ /// @{ /// \file -#include "Common.h" -#include "ObjectMgr.h" -#include "World.h" -#include "WorldSession.h" -#include "Configuration/Config.h" - -#include "AccountMgr.h" -#include "Chat.h" #include "CliRunnable.h" -#include "Language.h" -#include "Log.h" -#include "MapManager.h" -#include "Player.h" +#include "Config.h" #include "Util.h" +#include "World.h" #if TRINITY_PLATFORM != TRINITY_PLATFORM_WINDOWS +#include "Chat.h" +#include "ChatCommand.h" #include <readline/readline.h> #include <readline/history.h> #endif |
