Skip to content

Commit

Permalink
Bump
Browse files Browse the repository at this point in the history
  • Loading branch information
Nightenom committed Oct 28, 2024
1 parent 1f38b52 commit 9ee5ab0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ minecraft_range=[1.21, 1.22)

dataGeneratorsVersion=1.20.4-0.1.57-ALPHA
blockUI_version=1.0.192-1.21.1-snapshot
structurize_version=1.0.752-1.21.1-snapshot
structurize_version=1.0.754-1.21.1-snapshot
domumOrnamentumVersion=1.0.204-1.21.1-snapshot
multiPistonVersion=1.2.51-1.21.1-snapshot

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ public List<ItemStack> getRequiredItems(
}
if (tileEntityData != null)
{
itemList.addAll(ItemStackUtils.getItemStacksOfTileEntity(tileEntityData, blockState, world.registryAccess()));
itemList.addAll(ItemStackUtils.getItemStacksOfTileEntity(tileEntityData, blockState, world));
}
itemList.removeIf(ItemStackUtils::isEmpty);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ public List<ItemStack> getRequiredItems(

if (tileEntityData != null)
{
itemList.addAll(ItemStackUtils.getItemStacksOfTileEntity(tileEntityData, blockState, world.registryAccess()));
itemList.addAll(ItemStackUtils.getItemStacksOfTileEntity(tileEntityData, blockState, world));
}
itemList.removeIf(ItemStackUtils::isEmpty);
return itemList;
Expand Down

0 comments on commit 9ee5ab0

Please sign in to comment.