From 64b8d7c8746a8e748f8ab1c8166b2945abf292cc Mon Sep 17 00:00:00 2001 From: hg <4683435+hgtw@users.noreply.github.com> Date: Sun, 3 Oct 2021 13:25:49 -0400 Subject: [PATCH] Remove unnecessary includes (#1585) The include order here was causing a compile error when building with perl 5.12 due to a bad interaction with the older fmt submodule version being used --- zone/doors.h | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/zone/doors.h b/zone/doors.h index 009041805..a0d9c6364 100644 --- a/zone/doors.h +++ b/zone/doors.h @@ -1,13 +1,8 @@ #ifndef DOORS_H #define DOORS_H -#include "../common/repositories/doors_repository.h" -#include "../common/emu_opcodes.h" -#include "../common/eq_packet_structs.h" -#include "../common/linked_list.h" - #include "mob.h" -#include "zonedump.h" +#include "../common/repositories/doors_repository.h" class Client; class Mob;