Skip to content

Commit

Permalink
fix compile errors
Browse files Browse the repository at this point in the history
  • Loading branch information
Raycoms committed Aug 20, 2024
1 parent 7bb4e1e commit 179c19a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ public CompoundTag serializeNBT(@NotNull final HolderLookup.Provider provider)
@NotNull final ListTag bookcaseTagList = new ListTag();
for (@NotNull final BlockPos entry : bookCases)
{
bookcaseTagList.add(NBTUtils.writeBlockPos(entry)));
bookcaseTagList.add(NBTUtils.writeBlockPos(entry));
}
compound.put(TAG_BOOKCASES, bookcaseTagList);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ public CompoundTag serializeNBT(@NotNull final HolderLookup.Provider provider)
@NotNull final ListTag bookcaseTagList = new ListTag();
for (@NotNull final BlockPos entry : bookCases)
{
bookcaseTagList.add(NBTUtils.writeBlockPos(entry)));
bookcaseTagList.add(NBTUtils.writeBlockPos(entry));
}
compound.put(TAG_BOOKCASES, bookcaseTagList);

Expand Down

0 comments on commit 179c19a

Please sign in to comment.