Skip to content

Commit

Permalink
update version => 1.0.63: hotfix for illegal +nbt containers not prop…
Browse files Browse the repository at this point in the history
…erly reverting
  • Loading branch information
crxyne committed May 15, 2024
1 parent d2cad98 commit b6dba84
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@ private static ItemState checkItemStackUncached(@NotNull final ItemStack itemSta
if (result.get().books() > 0)
return ItemState.IS_SHULKER_WITH_BOOKS;

return result.get().wasReverted() ? ItemState.WAS_FIXED : ItemState.CLEAN;
return result.get().wasReverted() || wasFixed ? ItemState.WAS_FIXED : ItemState.CLEAN;
}
}
return wasFixed ? ItemState.WAS_FIXED : ItemState.CLEAN;
Expand Down

0 comments on commit b6dba84

Please sign in to comment.