From 13a7ba388de75f5a2e6d938df42d027f71eb433d Mon Sep 17 00:00:00 2001 From: NTG Date: Tue, 2 Sep 2025 11:18:35 +0900 Subject: [PATCH] =?UTF-8?q?=EC=9A=94=EB=A6=AC=20=EC=83=81=ED=98=B8?= =?UTF-8?q?=EC=9E=91=EC=9A=A9=20=EC=A1=B0=EA=B1=B4=EB=AC=B8=20=EC=B6=94?= =?UTF-8?q?=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../RestaurantCooks/RestaurantCookSolver_StartCooking.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Assets/_DDD/_Scripts/Restaurant/Event/Solvers/RestaurantCooks/RestaurantCookSolver_StartCooking.cs b/Assets/_DDD/_Scripts/Restaurant/Event/Solvers/RestaurantCooks/RestaurantCookSolver_StartCooking.cs index 14ed4e97c..041d649e7 100644 --- a/Assets/_DDD/_Scripts/Restaurant/Event/Solvers/RestaurantCooks/RestaurantCookSolver_StartCooking.cs +++ b/Assets/_DDD/_Scripts/Restaurant/Event/Solvers/RestaurantCooks/RestaurantCookSolver_StartCooking.cs @@ -19,6 +19,9 @@ public bool ExecuteInteractionSubsystem(IInteractor interactor, IInteractable in public bool CanExecuteInteractionSubsystem(IInteractor interactor = null, IInteractable interactable = null, ScriptableObject payload = null) { + var isCarrying = interactor?.GetInteractorGameObject().GetComponent().IsCarrying(); + if (isCarrying == null || isCarrying == true) return false; + _cookwareType = CookwareType.None; var iCookware = interactable?.GetInteractableGameObject().GetComponent(); if (iCookware == null) return false;