From 7f01bb509c03c5fe57d1de71eadf46a968b5305b Mon Sep 17 00:00:00 2001 From: Alex King <89047260+Kinglykrab@users.noreply.github.com> Date: Sat, 25 Feb 2023 19:38:09 -0500 Subject: [PATCH] [Cleanup] Remove DumpPacketProfile() from client.h (#3000) # Notes - This is unused. --- zone/client.h | 3 --- 1 file changed, 3 deletions(-) diff --git a/zone/client.h b/zone/client.h index 6aa82b601..b27528f96 100644 --- a/zone/client.h +++ b/zone/client.h @@ -845,9 +845,6 @@ public: inline void SetBecomeNPC(bool flag) { npcflag = flag; } inline void SetBecomeNPCLevel(uint8 level) { npclevel = level; } EQStreamInterface* Connection() { return eqs; } -#ifdef PACKET_PROFILER - void DumpPacketProfile() { if(eqs) eqs->DumpPacketProfile(); } -#endif uint32 GetEquippedItemFromTextureSlot(uint8 material_slot) const; // returns item id uint32 GetEquipmentColor(uint8 material_slot) const; virtual void UpdateEquipmentLight() { m_Light.Type[EQ::lightsource::LightEquipment] = m_inv.FindBrightestLightType(); m_Light.Level[EQ::lightsource::LightEquipment] = EQ::lightsource::TypeToLevel(m_Light.Type[EQ::lightsource::LightEquipment]); }