From ef09a173aea56a455b78680658cc7069074dacee Mon Sep 17 00:00:00 2001 From: stilnat Date: Sat, 19 Aug 2023 18:23:56 +0200 Subject: [PATCH] remove useless log --- .../Scripts/SS3D/Systems/Inventory/Containers/HumanInventory.cs | 1 - 1 file changed, 1 deletion(-) diff --git a/Assets/Scripts/SS3D/Systems/Inventory/Containers/HumanInventory.cs b/Assets/Scripts/SS3D/Systems/Inventory/Containers/HumanInventory.cs index d5a712632f..98bfef389b 100644 --- a/Assets/Scripts/SS3D/Systems/Inventory/Containers/HumanInventory.cs +++ b/Assets/Scripts/SS3D/Systems/Inventory/Containers/HumanInventory.cs @@ -112,7 +112,6 @@ private void SyncInventoryContainerChange(SyncListOperation op, int index, Attac OnInventoryContainerAdded?.Invoke(newContainer); break; case SyncListOperation.RemoveAt: - Debug.Log("remove container " + oldContainer); OnInventoryContainerRemoved?.Invoke(oldContainer); break; }