summaryrefslogtreecommitdiffstats
path: root/nms-patches/BlockJukeBox.patch
blob: 2b1a5cd654e258d4b300d10ac4211ae8e131bbd8 (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
@@ -141,6 +141,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();
         }