Skip to content

Commit

Permalink
hotfix restaurant not loading
Browse files Browse the repository at this point in the history
  • Loading branch information
Raycoms committed Aug 24, 2024
1 parent 3bcb5ae commit 4871e41
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ public void deserializeNBT(@NotNull final HolderLookup.Provider provider, final
final ListTag furnaceTagList = compound.getList(TAG_FURNACES, Tag.TAG_INT_ARRAY);
for (int i = 0; i < furnaceTagList.size(); ++i)
{
furnaces.add(NBTUtils.readBlockPos(furnaceTagList.getCompound(i)));
furnaces.add(NBTUtils.readBlockPos(furnaceTagList.get(i)));
}
}

Expand Down

0 comments on commit 4871e41

Please sign in to comment.