From b588f424b55bb6fb4a2fce9b5193add3e060bcf0 Mon Sep 17 00:00:00 2001 From: Reyli Date: Mon, 24 Jun 2024 00:44:22 -0500 Subject: [PATCH] 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. --- src/world/Manager/HousingMgr.h | 34 +++++++++++++++++----------------- 1 file changed, 17 insertions(+), 17 deletions(-) diff --git a/src/world/Manager/HousingMgr.h b/src/world/Manager/HousingMgr.h index 144b0a77..b5d76178 100644 --- a/src/world/Manager/HousingMgr.h +++ b/src/world/Manager/HousingMgr.h @@ -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; }; /*!