From a29cdf4dfd861b6f85cc1d8dddaf109fd9b44b3e Mon Sep 17 00:00:00 2001 From: Mordred Date: Tue, 8 Feb 2022 00:24:09 +0100 Subject: [PATCH] Gold saucer is now being loaded --- src/world/Manager/TerritoryMgr.cpp | 4 +++- src/world/Manager/TerritoryMgr.h | 5 +++++ 2 files changed, 8 insertions(+), 1 deletion(-) 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,