From 55b495826c3c25c147dff487b7b84b917ce613af Mon Sep 17 00:00:00 2001 From: Akkadius Date: Mon, 15 Dec 2014 17:48:18 -0600 Subject: [PATCH] masterentity.h include order revert for linux --- zone/masterentity.h | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/zone/masterentity.h b/zone/masterentity.h index 72cf0b162..8c238ed34 100644 --- a/zone/masterentity.h +++ b/zone/masterentity.h @@ -1,17 +1,17 @@ //Trumpcard: EntityLists are composed of multiple list types. This is the //master that includes all types. When entity.h is required, many of these are as well. -#include "beacon.h" -#include "client.h" -#include "corpse.h" -#include "doors.h" #include "entity.h" #include "groups.h" -#include "horse.h" -#include "mob.h" -#include "object.h" #include "raids.h" +#include "client.h" +#include "object.h" +#include "corpse.h" +#include "doors.h" +#include "mob.h" #include "trap.h" +#include "beacon.h" +#include "horse.h" #ifdef BOTS #include "bot.h"