]> git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/commitdiff
Use a debug log instead for reporting item pickups (less console spam)
authorMario <mario.mario@y7mail.com>
Tue, 24 Dec 2019 15:32:21 +0000 (01:32 +1000)
committerMario <mario.mario@y7mail.com>
Tue, 24 Dec 2019 15:32:21 +0000 (01:32 +1000)
qcsrc/common/items/inventory.qh

index 536d94a2d5e509c82f7911268b1a647038bf211e..9f0a43a0750959f08d1847886e09e88ea017673d 100644 (file)
@@ -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_DEBUGF("%s: %.0f -> %.0f", it.m_name, prev, next);
         }
     }
     return true;