From e5475a1335107cb4733d1a31e977c225cb2d7892 Mon Sep 17 00:00:00 2001 From: Anonymous Raccoon <32224410+AnonymusRaccoon@users.noreply.github.com> Date: Mon, 13 Aug 2018 14:21:46 +0200 Subject: [PATCH] ry --- Assets/Script/InventoryManager.cs | 1 + 1 file changed, 1 insertion(+) 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); }