summaryrefslogtreecommitdiffstats
path: root/nms-patches/BlockJukeBox.patch
blob: b279f1013f75a7ec3fe54ddf5150ff91ea2113c9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
--- a/net/minecraft/server/BlockJukeBox.java
+++ b/net/minecraft/server/BlockJukeBox.java
@@ -140,6 +140,11 @@
         }
 
         public void setRecord(@Nullable ItemStack itemstack) {
+            // CraftBukkit start - There can only be one
+            if (itemstack != null) {
+                itemstack.count = 1;
+            }
+            // CraftBukkit end
             this.record = itemstack;
             this.update();
         }