1
Fork 0
mirror of https://github.com/SapphireServer/Sapphire.git synced 2025-05-06 02:37:47 +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:
Reyli 2024-06-24 00:44:22 -05:00
parent 6111461aef
commit b588f424b5

View file

@ -26,32 +26,32 @@ namespace Sapphire::World::Manager
struct LandCacheEntry
{
// land table
uint64_t m_landSetId{};
uint16_t m_landId{};
uint64_t m_landSetId;
uint16_t m_landId;
Common::LandType m_type{};
Common::HouseSize m_size{};
Common::HouseStatus m_status{};
Common::LandType m_type;
Common::HouseSize m_size;
Common::HouseStatus m_status;
uint64_t m_currentPrice{};
uint64_t m_currentPrice;
uint64_t m_updateTime{};
uint64_t m_ownerId{};
uint64_t m_houseId{};
uint64_t m_updateTime;
uint64_t m_ownerId;
uint64_t m_houseId;
// house table
std::string m_estateWelcome{};
std::string m_estateComment{};
std::string m_estateName{};
std::string m_estateWelcome;
std::string m_estateComment;
std::string m_estateName;
bool m_hasAetheryte{};
bool m_hasAetheryte;
uint64_t m_buildTime{};
uint64_t m_endorsements{};
uint64_t m_buildTime;
uint64_t m_endorsements;
uint16_t m_maxPlacedExternalItems{};
uint16_t m_maxPlacedInternalItems{};
uint16_t m_maxPlacedExternalItems;
uint16_t m_maxPlacedInternalItems;
};
/*!