From 90cb778071fef2cfdfe9b8cca26d3ce3caec82a3 Mon Sep 17 00:00:00 2001 From: Mario Date: Wed, 25 Dec 2019 01:28:46 +1000 Subject: [PATCH] Don't perform a trace log on every item picked up --- qcsrc/common/items/inventory.qh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qcsrc/common/items/inventory.qh b/qcsrc/common/items/inventory.qh index 017ada75c..536d94a2d 100644 --- a/qcsrc/common/items/inventory.qh +++ b/qcsrc/common/items/inventory.qh @@ -42,7 +42,7 @@ NET_HANDLE(ENT_CLIENT_INVENTORY, bool isnew) .int fld = inv_items[it.m_id]; int prev = this.(fld); int next = this.(fld) = ReadByte(); - LOG_TRACEF("%s: %.0f -> %.0f", it.m_name, prev, next); + //LOG_TRACEF("%s: %.0f -> %.0f", it.m_name, prev, next); } } return true; -- 2.39.2