diff --git a/src/world/Manager/TerritoryMgr.cpp b/src/world/Manager/TerritoryMgr.cpp index 058f44af..5d834595 100644 --- a/src/world/Manager/TerritoryMgr.cpp +++ b/src/world/Manager/TerritoryMgr.cpp @@ -143,7 +143,9 @@ bool TerritoryMgr::isDefaultTerritory( uint32_t territoryTypeId ) const return pTeri->data().IntendedUse == TerritoryIntendedUse::Inn || pTeri->data().IntendedUse == TerritoryIntendedUse::Town || pTeri->data().IntendedUse == TerritoryIntendedUse::OpenWorld || - pTeri->data().IntendedUse == TerritoryIntendedUse::OpeningArea; + pTeri->data().IntendedUse == TerritoryIntendedUse::OpeningArea || + pTeri->data().IntendedUse == TerritoryIntendedUse::GoldSaucer || + pTeri->data().IntendedUse == TerritoryIntendedUse::ChocoboSquare; } diff --git a/src/world/Manager/TerritoryMgr.h b/src/world/Manager/TerritoryMgr.h index 35aa5c8f..5cd7489f 100644 --- a/src/world/Manager/TerritoryMgr.h +++ b/src/world/Manager/TerritoryMgr.h @@ -46,9 +46,14 @@ namespace Sapphire::World::Manager MSQPrivateArea = 15, Raids = 16, RaidFights = 17, + ChocoboSquare = 19, ChocoboTutorial = 21, Wedding = 22, + GoldSaucer = 23, + DiademV1 = 26, BeginnerTutorial = 27, + PvPTheFeast = 28, + MSQEventArea = 29, FreeCompanyGarrison = 30, PalaceOfTheDead = 31, TreasureMapInstance = 33,