Skip to content

Commit

Permalink
Properly fix biggerstacks
Browse files Browse the repository at this point in the history
  • Loading branch information
JustRed23 committed Apr 5, 2024
1 parent ef9780f commit 5e07e41
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
public ItemStack(ItemLike p_41599_) {
this(p_41599_, 1);
}
@@ -137,30 +_,67 @@
@@ -137,30 +_,68 @@
}

public ItemStack(ItemLike p_41601_, int p_41602_) {
Expand Down Expand Up @@ -117,6 +117,7 @@
+ private ItemStack(CompoundTag p_41608_) {
+ super(ItemStack.class, true);
+ this.load(p_41608_);
+ this.count = p_41608_.getByte("Count"); //Ketting - read count again to allow mixins to overwrite this
+ // CraftBukkit end
}

Expand Down

0 comments on commit 5e07e41

Please sign in to comment.