diff --git a/src/world/Manager/HousingMgr.cpp b/src/world/Manager/HousingMgr.cpp index 80fcbf8c..539bd634 100644 --- a/src/world/Manager/HousingMgr.cpp +++ b/src/world/Manager/HousingMgr.cpp @@ -513,8 +513,6 @@ void Sapphire::World::Manager::HousingMgr::sendHousingInventory( Entity::Player& if( !container ) return; - player.sendDebug( "got inventory for plot: " + targetLand->getHouse()->getHouseName() ); - auto invMgr = g_fw.get< Manager::InventoryMgr >(); invMgr->sendInventoryContainer( player, container ); } \ No newline at end of file diff --git a/src/world/Territory/Land.cpp b/src/world/Territory/Land.cpp index 5f7abd9d..20035793 100644 --- a/src/world/Territory/Land.cpp +++ b/src/world/Territory/Land.cpp @@ -117,7 +117,7 @@ void Sapphire::Land::init() } // init item containers - auto setupContainer = [ this ]( InventoryType type, uint8_t maxSize ) + auto setupContainer = [ this ]( InventoryType type, uint16_t maxSize ) { m_landInventoryMap[ type ] = make_ItemContainer( type, maxSize, "houseiteminventory", true, true ); }; @@ -127,13 +127,6 @@ void Sapphire::Land::init() setupContainer( InventoryType::HousingOutdoorStoreroom, m_maxPlacedExternalItems ); setupContainer( InventoryType::HousingInteriorAppearance, 9 ); - - //uint64_t uId, uint32_t catalogId, uint64_t model1, uint64_t model2, bool isHq - auto item = make_Item( 0x1000, 6600, 0, 0, false ); - item->setStackSize(1); - - m_landInventoryMap[ InventoryType::HousingOutdoorPlacedItems ]->setItem( 0, item ); - m_landInventoryMap[ InventoryType::HousingOutdoorStoreroom ]->setItem( 0, item ); } void Sapphire::Land::loadItemContainerContents()