clone itemstack to return remaining stack (#6353)
This commit is contained in:
@@ -21,6 +21,7 @@ index 0000000000000000000000000000000000000000..00000000000000000000000000000000
|
|||||||
stack = ItemStack.EMPTY;
|
stack = ItemStack.EMPTY;
|
||||||
+ // Paper start
|
+ // Paper start
|
||||||
+ } else {
|
+ } else {
|
||||||
|
+ stack = stack.copy(); // Paper - copy stack to return leftover stack
|
||||||
+ stack.setCount(originalCount - stack.getCount());
|
+ stack.setCount(originalCount - stack.getCount());
|
||||||
+ }
|
+ }
|
||||||
+ // Paper end
|
+ // Paper end
|
||||||
|
|||||||
Reference in New Issue
Block a user