mirror of
https://hub.spigotmc.org/stash/scm/spigot/craftbukkit.git
synced 2025-08-19 21:09:05 +00:00
15 lines
404 B
Diff
15 lines
404 B
Diff
![]() |
--- 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();
|
||
|
}
|