aboutsummaryrefslogtreecommitdiff
path: root/src/game/AuctionHouseHandler.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/game/AuctionHouseHandler.cpp')
-rw-r--r--src/game/AuctionHouseHandler.cpp14
1 files changed, 8 insertions, 6 deletions
diff --git a/src/game/AuctionHouseHandler.cpp b/src/game/AuctionHouseHandler.cpp
index 1a70162de11..d1f399bf570 100644
--- a/src/game/AuctionHouseHandler.cpp
+++ b/src/game/AuctionHouseHandler.cpp
@@ -18,17 +18,19 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
+#include "ObjectMgr.h"
+#include "Player.h"
+#include "World.h"
#include "WorldPacket.h"
#include "WorldSession.h"
-#include "Opcodes.h"
+
+#include "AuctionHouseBot.h"
+#include "AuctionHouseMgr.h"
#include "Log.h"
-#include "World.h"
-#include "ObjectMgr.h"
-#include "Player.h"
+#include "Opcodes.h"
#include "UpdateMask.h"
-#include "AuctionHouseMgr.h"
#include "Util.h"
-#include "AuctionHouseBot.h"
+
//please DO NOT use iterator++, because it is slower than ++iterator!!!
//post-incrementation is always slower than pre-incrementation !