diff --git a/src/game/CMakeLists.txt b/src/game/CMakeLists.txt index 59db0616..e0eda5ae 100644 --- a/src/game/CMakeLists.txt +++ b/src/game/CMakeLists.txt @@ -39,6 +39,7 @@ include_directories( "${CMAKE_SOURCE_DIR}/dep/recastnavigation/" "${CMAKE_SOURCE_DIR}/dep/include" "${CMAKE_SOURCE_DIR}/src/shared" + "${CMAKE_SOURCE_DIR}/src/shared/Config" "${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 3f49fb86..ecc1d2ac 100644 --- a/src/modules/Bots/CMakeLists.txt +++ b/src/modules/Bots/CMakeLists.txt @@ -129,6 +129,7 @@ include_directories( ${CMAKE_SOURCE_DIR}/src/game/vmap ${CMAKE_SOURCE_DIR}/src/game/WorldHandlers ${CMAKE_SOURCE_DIR}/src/shared + ${CMAKE_SOURCE_DIR}/src/shared/Config ${CMAKE_SOURCE_DIR}/src/shared/Common ${CMAKE_SOURCE_DIR}/src/shared/Database ${CMAKE_SOURCE_DIR}/src/shared/DataStores @@ -181,4 +182,4 @@ endif() # Generate PCH if(PCH) ADD_CXX_PCH(Bots ${bots_PCH}) -endif() \ No newline at end of file +endif() diff --git a/src/modules/Bots/ahbot/AhBot.cpp b/src/modules/Bots/ahbot/AhBot.cpp index 567aac1b..ad943ed6 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/Config.h" +#include "Config.h" #include "Chat.h" #include "AhBotConfig.h" #include "AuctionHouseMgr.h" diff --git a/src/modules/Bots/ahbot/Category.h b/src/modules/Bots/ahbot/Category.h index 34391358..39042ebd 100644 --- a/src/modules/Bots/ahbot/Category.h +++ b/src/modules/Bots/ahbot/Category.h @@ -1,5 +1,5 @@ #pragma once -#include "config/Config.h" +#include "Config.h" #include "PricingStrategy.h" #include "ItemPrototype.h" #include "SharedDefines.h" diff --git a/src/modules/Bots/ahbot/PricingStrategy.h b/src/modules/Bots/ahbot/PricingStrategy.h index b4859753..faad2b50 100644 --- a/src/modules/Bots/ahbot/PricingStrategy.h +++ b/src/modules/Bots/ahbot/PricingStrategy.h @@ -1,5 +1,5 @@ #pragma once -#include "config/Config.h" +#include "Config.h" #include "ItemPrototype.h" using namespace std; diff --git a/src/modules/Bots/playerbot/PlayerbotAIConfig.h b/src/modules/Bots/playerbot/PlayerbotAIConfig.h index eac75ebf..cf39ac5c 100644 --- a/src/modules/Bots/playerbot/PlayerbotAIConfig.h +++ b/src/modules/Bots/playerbot/PlayerbotAIConfig.h @@ -1,6 +1,6 @@ #pragma once -#include "config/Config.h" +#include "Config.h" class Player; class PlayerbotMgr;