From 1ce098d021b62a00b258f68904017d8406b05521 Mon Sep 17 00:00:00 2001 From: Mario Date: Tue, 19 Jul 2016 19:27:36 +1000 Subject: [PATCH] Silence item pickup messages --- qcsrc/common/items/item/pickup.qh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qcsrc/common/items/item/pickup.qh b/qcsrc/common/items/item/pickup.qh index 08f7ff9c3..6d9149481 100644 --- a/qcsrc/common/items/item/pickup.qh +++ b/qcsrc/common/items/item/pickup.qh @@ -29,7 +29,7 @@ CLASS(Pickup, GameItem) TC(Pickup, this); bool b = Item_GiveTo(item, player); if (b) { - LOG_TRACEF("entity %i picked up %s\n", player, this.m_name); + LOG_DEBUGF("entity %i picked up %s\n", player, this.m_name); player.inventory.inv_items[this.m_id]++; Inventory_update(player); } -- 2.39.2