mirror of
https://github.com/SapphireServer/Sapphire.git
synced 2025-05-06 10:47:45 +00:00
Reverted struct bracket initialization from Intellisense warning
Decided Intellisense is weird and inconsistent so if it's not a build warning I just ignored it.
This commit is contained in:
parent
6111461aef
commit
b588f424b5
1 changed files with 17 additions and 17 deletions
|
@ -26,32 +26,32 @@ namespace Sapphire::World::Manager
|
||||||
struct LandCacheEntry
|
struct LandCacheEntry
|
||||||
{
|
{
|
||||||
// land table
|
// land table
|
||||||
uint64_t m_landSetId{};
|
uint64_t m_landSetId;
|
||||||
uint16_t m_landId{};
|
uint16_t m_landId;
|
||||||
|
|
||||||
Common::LandType m_type{};
|
Common::LandType m_type;
|
||||||
Common::HouseSize m_size{};
|
Common::HouseSize m_size;
|
||||||
Common::HouseStatus m_status{};
|
Common::HouseStatus m_status;
|
||||||
|
|
||||||
uint64_t m_currentPrice{};
|
uint64_t m_currentPrice;
|
||||||
|
|
||||||
uint64_t m_updateTime{};
|
uint64_t m_updateTime;
|
||||||
uint64_t m_ownerId{};
|
uint64_t m_ownerId;
|
||||||
uint64_t m_houseId{};
|
uint64_t m_houseId;
|
||||||
|
|
||||||
// house table
|
// house table
|
||||||
|
|
||||||
std::string m_estateWelcome{};
|
std::string m_estateWelcome;
|
||||||
std::string m_estateComment{};
|
std::string m_estateComment;
|
||||||
std::string m_estateName{};
|
std::string m_estateName;
|
||||||
|
|
||||||
bool m_hasAetheryte{};
|
bool m_hasAetheryte;
|
||||||
|
|
||||||
uint64_t m_buildTime{};
|
uint64_t m_buildTime;
|
||||||
uint64_t m_endorsements{};
|
uint64_t m_endorsements;
|
||||||
|
|
||||||
uint16_t m_maxPlacedExternalItems{};
|
uint16_t m_maxPlacedExternalItems;
|
||||||
uint16_t m_maxPlacedInternalItems{};
|
uint16_t m_maxPlacedInternalItems;
|
||||||
};
|
};
|
||||||
|
|
||||||
/*!
|
/*!
|
||||||
|
|
Loading…
Add table
Reference in a new issue