Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
gjmhmm8 committed May 5, 2024
1 parent 3922e96 commit 057e1ed
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public DigitalSingularityStorageCell(ItemStack stack, ISaveProvider container) {

DigitalSingularityCellItem cell = (DigitalSingularityCellItem) stack.getItem();

storedItem = getTag().contains(KEY) ? cell.getKeyType().loadKeyFromTag(getTag().getCompound(KEY)) : null;
storedItem = getTag().contains(KEY) ? AEKey.fromTagGeneric(getTag().getCompound(KEY)) : null;
filterItem = cell.getConfigInventory(stack).getKey(0);

count = !getTag().getString(COUNT).isEmpty()
Expand Down

0 comments on commit 057e1ed

Please sign in to comment.