fix birthday tokens

This commit is contained in:
SilicaAndPina 2021-03-04 01:11:28 +13:00
parent 94cf84b384
commit 362f8a1490
2 changed files with 9 additions and 0 deletions

View file

@ -146,6 +146,10 @@ namespace HISP.Game.Inventory
}
throw new KeyNotFoundException("random id: " + randomId + " not found in inventory");
}
public void AddWithoutDatabase(ItemInstance item)
{
addItem(item, false);
}
public void AddIgnoringFull(ItemInstance item)
{