Archiviert
13
0
Dieses Repository wurde am 2024-12-25 archiviert. Du kannst Dateien ansehen und es klonen, aber nicht pushen oder Issues/Pull-Requests öffnen.
Paper-Old/nms-patches/BlockJukeBox.patch

15 Zeilen
446 B
Diff

2015-05-25 12:37:24 +02:00
--- a/net/minecraft/server/BlockJukeBox.java
+++ b/net/minecraft/server/BlockJukeBox.java
2016-06-09 03:43:49 +02:00
@@ -144,6 +144,11 @@
2015-02-26 23:41:06 +01:00
}
2016-05-10 13:47:39 +02:00
public void setRecord(@Nullable ItemStack itemstack) {
2015-02-26 23:41:06 +01:00
+ // CraftBukkit start - There can only be one
+ if (itemstack != null) {
+ itemstack.count = 1;
+ }
+ // CraftBukkit end
this.record = itemstack;
this.update();
}