mirror of
https://github.com/PaperMC/Paper.git
synced 2024-12-28 07:20:24 +01:00
Use correct max stack size in crafter (#10057)
This commit is contained in:
parent
086ca616d8
commit
45e01a2a78
1 changed files with 19 additions and 0 deletions
|
@ -0,0 +1,19 @@
|
||||||
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
||||||
|
From: Jake Potrebic <jake.m.potrebic@gmail.com>
|
||||||
|
Date: Tue, 19 Dec 2023 13:52:21 -0800
|
||||||
|
Subject: [PATCH] Use correct max stack size in crafter
|
||||||
|
|
||||||
|
|
||||||
|
diff --git a/src/main/java/net/minecraft/world/level/block/entity/CrafterBlockEntity.java b/src/main/java/net/minecraft/world/level/block/entity/CrafterBlockEntity.java
|
||||||
|
index c832aad3312ecd4d8027e4f78c12f640dec56bf9..0801e09d41223c65eee37256c5cfb3c6dce1e44e 100644
|
||||||
|
--- a/src/main/java/net/minecraft/world/level/block/entity/CrafterBlockEntity.java
|
||||||
|
+++ b/src/main/java/net/minecraft/world/level/block/entity/CrafterBlockEntity.java
|
||||||
|
@@ -40,7 +40,7 @@ public class CrafterBlockEntity extends RandomizableContainerBlockEntity impleme
|
||||||
|
protected final ContainerData containerData;
|
||||||
|
// CraftBukkit start - add fields and methods
|
||||||
|
public List<HumanEntity> transaction = new java.util.ArrayList<>();
|
||||||
|
- private int maxStack = 1;
|
||||||
|
+ private int maxStack = CraftingContainer.LARGE_MAX_STACK_SIZE; // Paper - use correct stack size
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public List<ItemStack> getContents() {
|
Loading…
Reference in a new issue