Pick up thrown items

This commit is contained in:
2025-03-27 00:37:16 -07:00
parent 096786f97e
commit 2378030a0f
5 changed files with 53 additions and 8 deletions

View File

@@ -32,5 +32,5 @@ public interface IGame : IProvide<IGameRepo>, IProvide<IGameEventDepot>, IProvid
public void TogglePause();
public InventoryItem RerollItem(InventoryItem itemToReroll);
public InventoryItem RerollItem(InventoryItem itemToReroll, bool insertIntoInventory = true);
}