diff --git a/src/game/CMakeLists.txt b/src/game/CMakeLists.txt index 59db0616..8bb241c3 100644 --- a/src/game/CMakeLists.txt +++ b/src/game/CMakeLists.txt @@ -38,7 +38,7 @@ include_directories( "${CMAKE_SOURCE_DIR}/dep/recastnavigation/Detour" "${CMAKE_SOURCE_DIR}/dep/recastnavigation/" "${CMAKE_SOURCE_DIR}/dep/include" - "${CMAKE_SOURCE_DIR}/src/shared" + "${CMAKE_SOURCE_DIR}/src/shared", "${CMAKE_SOURCE_DIR}/src/shared/Common" "${CMAKE_SOURCE_DIR}/src/shared/Database" "${CMAKE_SOURCE_DIR}/src/shared/DataStores" diff --git a/src/modules/Bots/CMakeLists.txt b/src/modules/Bots/CMakeLists.txt index 7ea14046..3f49fb86 100644 --- a/src/modules/Bots/CMakeLists.txt +++ b/src/modules/Bots/CMakeLists.txt @@ -130,7 +130,6 @@ include_directories( ${CMAKE_SOURCE_DIR}/src/game/WorldHandlers ${CMAKE_SOURCE_DIR}/src/shared ${CMAKE_SOURCE_DIR}/src/shared/Common - ${CMAKE_SOURCE_DIR}/src/shared/Config ${CMAKE_SOURCE_DIR}/src/shared/Database ${CMAKE_SOURCE_DIR}/src/shared/DataStores ${CMAKE_SOURCE_DIR}/src/shared/Log diff --git a/src/modules/Bots/ahbot/AhBot.cpp b/src/modules/Bots/ahbot/AhBot.cpp index ad943ed6..567aac1b 100644 --- a/src/modules/Bots/ahbot/AhBot.cpp +++ b/src/modules/Bots/ahbot/AhBot.cpp @@ -2,7 +2,7 @@ #include "ItemBag.h" #include "AhBot.h" #include "World.h" -#include "Config.h" +#include "config/Config.h" #include "Chat.h" #include "AhBotConfig.h" #include "AuctionHouseMgr.h"