1
Fork 0
mirror of https://github.com/SapphireServer/Sapphire.git synced 2025-04-26 14:37:44 +00:00

Merge pull request #832 from dude22072/ThreePointOh

[3.0] Add BeforeTrialDung to isDefaultTerritory
This commit is contained in:
Mordred 2023-01-17 22:19:52 +01:00 committed by GitHub
commit 13cb3bb1d8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -145,7 +145,8 @@ bool TerritoryMgr::isDefaultTerritory( uint32_t territoryTypeId ) const
pTeri->data().IntendedUse == TerritoryIntendedUse::OpenWorld ||
pTeri->data().IntendedUse == TerritoryIntendedUse::OpeningArea ||
pTeri->data().IntendedUse == TerritoryIntendedUse::GoldSaucer ||
pTeri->data().IntendedUse == TerritoryIntendedUse::ChocoboSquare;
pTeri->data().IntendedUse == TerritoryIntendedUse::ChocoboSquare ||
pTeri->data().IntendedUse == TerritoryIntendedUse::BeforeTrialDung;
}