diff --git a/.github/workflows/cmangos-ubuntu-build.yml b/.github/workflows/cmangos-ubuntu-build.yml index 6a0731e03..39084af45 100644 --- a/.github/workflows/cmangos-ubuntu-build.yml +++ b/.github/workflows/cmangos-ubuntu-build.yml @@ -21,7 +21,7 @@ jobs: strategy: matrix: - version: [classic, tbc] + version: [classic] include: - os: ubuntu-22.04 EXTRA_BUILD: "-DBUILD_PLAYERBOTS=ON" diff --git a/.github/workflows/cmangos-windows-build.yml b/.github/workflows/cmangos-windows-build.yml index a68c7f37b..9f1b3ea2a 100644 --- a/.github/workflows/cmangos-windows-build.yml +++ b/.github/workflows/cmangos-windows-build.yml @@ -19,7 +19,7 @@ jobs: strategy: matrix: - version: [classic, tbc] + version: [classic] include: - os: windows-2022 EXTRA_BUILD: "-DBUILD_PLAYERBOTS=ON" diff --git a/playerbot/WorldPosition.cpp b/playerbot/WorldPosition.cpp index 2fb6846ef..140f2f264 100644 --- a/playerbot/WorldPosition.cpp +++ b/playerbot/WorldPosition.cpp @@ -143,7 +143,7 @@ GridMap* TerrainInfoAccess::LoadMapAndVMap(const uint32 x, const uint32 y, bool if (!MMAP::MMapFactory::createOrGetMMapManager()->IsMMapIsLoaded(m_mapId, x, y)) { // load navmesh - if (!MMAP::MMapFactory::createOrGetMMapManager()->loadMap(m_mapId, x, y)) + if (!MMAP::MMapFactory::createOrGetMMapManager()->loadMap(m_mapId, x, y))// return nullptr; }