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