Fix issues with disabled puzzle steps not registering with puzzle manager

This commit is contained in:
Michal Pikulski
2025-09-12 14:38:56 +02:00
parent a580a5f35a
commit cec661586e
4 changed files with 14 additions and 14 deletions

View File

@@ -139,7 +139,6 @@ namespace Interactions
}
else
{
if (itemToSlot != null)
{
DebugUIMessage.Show("I'm not sure this works.", Color.yellow);
@@ -148,17 +147,5 @@ namespace Interactions
Interactable.BroadcastInteractionComplete(false);
}
}
void Update()
{
if (_currentlySlottedItemObject != null)
{
Debug.Log($"[ItemSlot] Slotted item: {_currentlySlottedItemObject.name}");
}
else
{
Debug.Log("[ItemSlot] No item slotted.");
}
}
}
}