Skip to content

Commit

Permalink
Fixed incorrect mapping method for 1.19 (#1201)
Browse files Browse the repository at this point in the history
  • Loading branch information
OmerBenGera committed Jun 23, 2022
1 parent 5409364 commit fb2527a
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -11,7 +11,7 @@ public ItemStack(net.minecraft.world.item.ItemStack handle) {
}

public NBTTagCompound getOrCreateTag() {
return new NBTTagCompound(handle.u());
return new NBTTagCompound(handle.v());
}

public NBTTagCompound save(NBTTagCompound nbtTagCompound) {
Expand Down

0 comments on commit fb2527a

Please sign in to comment.