summaryrefslogtreecommitdiffstats
path: root/nms-patches/BlockJukeBox.patch
blob: 477d255e8f3fee5c0c47e75f60746cb661aa0502 (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
@@ -143,6 +143,11 @@
         }
 
         public void setRecord(ItemStack itemstack) {
+            // CraftBukkit start - There can only be one
+            if (!itemstack.isEmpty()) {
+                itemstack.setCount(1);
+            }
+            // CraftBukkit end
             this.record = itemstack;
             this.update();
         }