Fix issue with Amber not being added

the field for an item's `useOnGain` was final!
This commit is contained in:
KingRainbow44
2023-04-15 01:23:32 -04:00
Unverified
parent f2019aa88a
commit 2b4feba86f
2 changed files with 4 additions and 3 deletions
@@ -54,10 +54,10 @@ public class ItemData extends GameResource {
private int[] satiationParams;
// Usable item
private final ItemUseTarget useTarget = ItemUseTarget.ITEM_USE_TARGET_NONE;
private ItemUseTarget useTarget = ItemUseTarget.ITEM_USE_TARGET_NONE;
private List<ItemUseData> itemUse;
private List<ItemUseAction> itemUseActions;
private final boolean useOnGain = false;
private boolean useOnGain = false;
// Relic
private int mainPropDepotId;