From c5d3dd90bea3889ef5fcd33c9ef0d59d7c544f8a Mon Sep 17 00:00:00 2001 From: Shauren Date: Thu, 18 May 2017 23:52:58 +0200 Subject: Core/Game: Include cleanup * Mostly aimed at removing Log/DatabaseEnv includes from other headers * Fix most packet headers including other packet headers - moved common structures such as ItemInstance to their own files * Moved SAI function definitions to source files (massive or requiring many different dependencies) --- src/server/game/Reputation/ReputationMgr.cpp | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) (limited to 'src/server/game/Reputation/ReputationMgr.cpp') diff --git a/src/server/game/Reputation/ReputationMgr.cpp b/src/server/game/Reputation/ReputationMgr.cpp index 23d958315ff..038e05f1b3c 100644 --- a/src/server/game/Reputation/ReputationMgr.cpp +++ b/src/server/game/Reputation/ReputationMgr.cpp @@ -16,17 +16,18 @@ * with this program. If not, see . */ -#include "DatabaseEnv.h" #include "ReputationMgr.h" -#include "ReputationPackets.h" -#include "Player.h" -#include "WorldPacket.h" -#include "World.h" +#include "CharacterPackets.h" +#include "DatabaseEnv.h" +#include "Log.h" #include "ObjectMgr.h" -#include "ScriptMgr.h" #include "Opcodes.h" +#include "Player.h" +#include "ReputationPackets.h" +#include "ScriptMgr.h" +#include "World.h" +#include "WorldPacket.h" #include "WorldSession.h" -#include "CharacterPackets.h" const int32 ReputationMgr::PointsInRank[MAX_REPUTATION_RANK] = {36000, 3000, 3000, 3000, 6000, 12000, 21000, 1000}; -- cgit v1.2.3