mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-22 21:47:24 +00:00
Fix: remove ability to buy items from a vendor if they don't sell said item (#1105)
This commit is contained in:
parent
9fabff16e4
commit
8ae1e1bc6b
@ -134,3 +134,7 @@ void VendorComponent::SetupConstants() {
|
|||||||
m_RefreshTimeSeconds = vendorComps[0].refreshTimeSeconds;
|
m_RefreshTimeSeconds = vendorComps[0].refreshTimeSeconds;
|
||||||
m_LootMatrixID = vendorComps[0].LootMatrixIndex;
|
m_LootMatrixID = vendorComps[0].LootMatrixIndex;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool VendorComponent::SellsItem(const LOT item) const {
|
||||||
|
return m_Inventory.find(item) != m_Inventory.end();
|
||||||
|
}
|
||||||
|
@ -67,6 +67,8 @@ public:
|
|||||||
* Called on startup of vendor to setup the variables for the component.
|
* Called on startup of vendor to setup the variables for the component.
|
||||||
*/
|
*/
|
||||||
void SetupConstants();
|
void SetupConstants();
|
||||||
|
|
||||||
|
bool SellsItem(const LOT item) const;
|
||||||
private:
|
private:
|
||||||
/**
|
/**
|
||||||
* The buy scalar.
|
* The buy scalar.
|
||||||
|
@ -4733,12 +4733,17 @@ void GameMessages::HandleBuyFromVendor(RakNet::BitStream* inStream, Entity* enti
|
|||||||
|
|
||||||
const auto isCommendationVendor = entity->GetLOT() == 13806;
|
const auto isCommendationVendor = entity->GetLOT() == 13806;
|
||||||
|
|
||||||
VendorComponent* vend = static_cast<VendorComponent*>(entity->GetComponent(eReplicaComponentType::VENDOR));
|
auto* vend = entity->GetComponent<VendorComponent>();
|
||||||
if (!vend && !isCommendationVendor) return;
|
if (!vend && !isCommendationVendor) return;
|
||||||
|
|
||||||
InventoryComponent* inv = static_cast<InventoryComponent*>(player->GetComponent(eReplicaComponentType::INVENTORY));
|
auto* inv = player->GetComponent<InventoryComponent>();
|
||||||
if (!inv) return;
|
if (!inv) return;
|
||||||
|
|
||||||
|
if (!isCommendationVendor && !vend->SellsItem(item)) {
|
||||||
|
Game::logger->Log("GameMessages", "User %llu %s tried to buy an item %i from a vendor when they do not sell said item", player->GetObjectID(), user->GetUsername().c_str(), item);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
CDComponentsRegistryTable* compRegistryTable = CDClientManager::Instance().GetTable<CDComponentsRegistryTable>();
|
CDComponentsRegistryTable* compRegistryTable = CDClientManager::Instance().GetTable<CDComponentsRegistryTable>();
|
||||||
CDItemComponentTable* itemComponentTable = CDClientManager::Instance().GetTable<CDItemComponentTable>();
|
CDItemComponentTable* itemComponentTable = CDClientManager::Instance().GetTable<CDItemComponentTable>();
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user