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