diff --git a/Assets/Script/InventoryManager.cs b/Assets/Script/InventoryManager.cs index 26a759b..eae5fe0 100644 --- a/Assets/Script/InventoryManager.cs +++ b/Assets/Script/InventoryManager.cs @@ -246,6 +246,7 @@ public class InventoryManager : MonoBehaviour private Vector2Int GetPlotPositionByIndex(int index) { + print(new Vector2Int(index / 5, 5 - index % 5)); return new Vector2Int(index / 5, 5 - index % 5); }