mirror of
https://github.com/PaperMC/Paper.git
synced 2024-12-28 07:20:24 +01:00
Drop no longer needed patch
This commit is contained in:
parent
886e4f56b5
commit
0b16cce6e6
2 changed files with 1 additions and 37 deletions
|
@ -133,7 +133,7 @@ allprojects {
|
||||||
|
|
||||||
tasks.collectAtsFromPatches {
|
tasks.collectAtsFromPatches {
|
||||||
// Uncomment while updating for a new Minecraft version
|
// Uncomment while updating for a new Minecraft version
|
||||||
extraPatchDir.set(layout.projectDirectory.dir("patches/unapplied/server"))
|
// extraPatchDir.set(layout.projectDirectory.dir("patches/unapplied/server"))
|
||||||
}
|
}
|
||||||
|
|
||||||
// Uncomment while updating for a new Minecraft version
|
// Uncomment while updating for a new Minecraft version
|
||||||
|
|
|
@ -1,36 +0,0 @@
|
||||||
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
||||||
From: Nassim Jahnke <nassim@njahnke.dev>
|
|
||||||
Date: Sat, 18 Mar 2023 18:51:33 +0100
|
|
||||||
Subject: [PATCH] Fix chiseled bookshelf and jukebox setItem with air
|
|
||||||
|
|
||||||
|
|
||||||
diff --git a/src/main/java/net/minecraft/world/level/block/entity/ChiseledBookShelfBlockEntity.java b/src/main/java/net/minecraft/world/level/block/entity/ChiseledBookShelfBlockEntity.java
|
|
||||||
index 0000000000000000000000000000000000000000..0000000000000000000000000000000000000000 100644
|
|
||||||
--- a/src/main/java/net/minecraft/world/level/block/entity/ChiseledBookShelfBlockEntity.java
|
|
||||||
+++ b/src/main/java/net/minecraft/world/level/block/entity/ChiseledBookShelfBlockEntity.java
|
|
||||||
@@ -0,0 +0,0 @@ public class ChiseledBookShelfBlockEntity extends BlockEntity implements Contain
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void setItem(int slot, ItemStack stack) {
|
|
||||||
- if (stack.is(ItemTags.BOOKSHELF_BOOKS)) {
|
|
||||||
+ if (stack.isEmpty() || stack.is(ItemTags.BOOKSHELF_BOOKS)) { // Paper
|
|
||||||
this.items.set(slot, stack);
|
|
||||||
if (level != null) this.updateState(slot); // CraftBukkit - SPIGOT-7381: check for null world
|
|
||||||
} else if (stack.isEmpty()) {
|
|
||||||
diff --git a/src/main/java/net/minecraft/world/level/block/entity/JukeboxBlockEntity.java b/src/main/java/net/minecraft/world/level/block/entity/JukeboxBlockEntity.java
|
|
||||||
index 0000000000000000000000000000000000000000..0000000000000000000000000000000000000000 100644
|
|
||||||
--- a/src/main/java/net/minecraft/world/level/block/entity/JukeboxBlockEntity.java
|
|
||||||
+++ b/src/main/java/net/minecraft/world/level/block/entity/JukeboxBlockEntity.java
|
|
||||||
@@ -0,0 +0,0 @@ public class JukeboxBlockEntity extends BlockEntity implements Clearable, Contai
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void setItem(int slot, ItemStack stack) {
|
|
||||||
+ // Paper start
|
|
||||||
+ if (stack.isEmpty()) {
|
|
||||||
+ this.removeItem(slot, 0);
|
|
||||||
+ return;
|
|
||||||
+ }
|
|
||||||
+ // Paper end
|
|
||||||
if (stack.is(ItemTags.MUSIC_DISCS) && this.level != null) {
|
|
||||||
this.items.set(slot, stack);
|
|
||||||
this.setHasRecordBlockState((Entity) null, true);
|
|
Loading…
Reference in a new issue