summaryrefslogtreecommitdiffstats
path: root/nms-patches/TileEntityRecordPlayer.patch
blob: 37dd3018ed467db88d723c2160d455c9536f3c20 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
@@ -29,6 +29,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();
     }