fuck fuck fuckedy fuck

This commit is contained in:
HbmMods 2026-06-16 22:49:45 +02:00
parent 2e292f2a20
commit 64b1dbcd5a

View File

@ -199,7 +199,8 @@ public class StackCache {
public static long getStackIdentity(Item item, int meta, NBTTagCompound nbt) {
if(item == null) return getNullIdentity();
long identity = Item.getIdFromItem(item) * 27644437;
identity += meta * 27644437;
identity += meta;
identity *= 27644437;
if(nbt != null) identity += nbt.toString().hashCode();
return identity;
}