diff --git a/zone/npc.cpp b/zone/npc.cpp index b6de64e1f..652017690 100644 --- a/zone/npc.cpp +++ b/zone/npc.cpp @@ -3778,11 +3778,6 @@ void NPC::SetRecordLootStats(bool record_loot_stats) NPC::m_record_loot_stats = record_loot_stats; } -void NPC::FlushLootStats() -{ - m_rolled_items = {}; -} - const std::vector &NPC::GetRolledItems() const { return m_rolled_items; diff --git a/zone/npc.h b/zone/npc.h index 92d542012..6ce7a5c0b 100644 --- a/zone/npc.h +++ b/zone/npc.h @@ -115,7 +115,6 @@ public: // loot recording / simulator bool IsRecordLootStats() const; void SetRecordLootStats(bool record_loot_stats); - void FlushLootStats(); const std::vector &GetRolledItems() const; int GetRolledItemCount(uint32 item_id);