summaryrefslogtreecommitdiffstats
path: root/nms-patches/BlockJukeBox.patch
blob: 3dc4523398d48da90bcef4c93bb3474df2be50f6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
--- a/net/minecraft/server/BlockJukeBox.java
+++ b/net/minecraft/server/BlockJukeBox.java
@@ -32,7 +32,7 @@
         }
     }
 
-    private void dropRecord(World world, BlockPosition blockposition, IBlockData iblockdata) {
+    public void dropRecord(World world, BlockPosition blockposition, IBlockData iblockdata) { // CraftBukkit - public
         if (!world.isClientSide) {
             TileEntity tileentity = world.getTileEntity(blockposition);
 
@@ -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();
         }