fix: commendation vendor cant accept missions (#1497)

* fix: incorrect serialization for commendation

* Update VendorComponent.h
This commit is contained in:
David Markowitz
2024-03-06 17:50:21 -08:00
committed by GitHub
parent fcb89b3c7a
commit fe4b29f643
3 changed files with 17 additions and 6 deletions

View File

@@ -11,7 +11,9 @@ class Entity;
class AchievementVendorComponent final : public VendorComponent {
public:
static constexpr eReplicaComponentType ComponentType = eReplicaComponentType::ACHIEVEMENT_VENDOR;
AchievementVendorComponent(Entity* parent) : VendorComponent(parent) {};
AchievementVendorComponent(Entity* parent);
void RefreshInventory(bool isCreation = false) override;
bool SellsItem(Entity* buyer, const LOT lot);
void Buy(Entity* buyer, LOT lot, uint32_t count);