diff --git a/Assets/Scripts/Chest/ChestController.cs b/Assets/Scripts/Chest/ChestController.cs index 0f45ee5f..1467808b 100644 --- a/Assets/Scripts/Chest/ChestController.cs +++ b/Assets/Scripts/Chest/ChestController.cs @@ -33,6 +33,15 @@ public class ChestController : BaseWarehouseController EquipmentManager.Instance.OpenPanel(); } } + + if (!InventoryManager.Instance.isOpen) + { + if (Input.GetKeyDown(KeyCode.I)) + { + InventoryManager.Instance.OpenPanel(); + } + } + } void OnTriggerExit2D(Collider2D collision)