Basic throw works

This commit is contained in:
2024-09-18 02:57:13 -07:00
parent b7a982d340
commit 884f283ead
10 changed files with 234 additions and 37 deletions

View File

@@ -144,7 +144,9 @@ public partial class Inventory : Node, IInventory
public void Throw(IInventoryItem item)
{
Remove(item);
if (item is ThrowableItem throwable)
throwable.Throw(throwable.ThrowableItemInfo);
//Remove(item);
}
public void Drop(IInventoryItem item)