Fix thrown item position

Start adding more floors
Testing Item Rescue
This commit is contained in:
2025-03-04 00:32:24 -08:00
parent 2da4b8958d
commit b733a30724
16 changed files with 1051 additions and 159 deletions

View File

@@ -20,5 +20,7 @@ public partial class ItemRescue : Area3D
GD.Print("Item rescue entered");
if (item is IDroppedItem droppedItem)
droppedItem.RescueItem();
if (item is ThrownItem thrownItem)
thrownItem.RescueItem();
}
}