aboutsummaryrefslogtreecommitdiffhomepage
path: root/patches/server/0750-Disable-component-selector-resolving-in-books-by-def.patch
diff options
context:
space:
mode:
Diffstat (limited to 'patches/server/0750-Disable-component-selector-resolving-in-books-by-def.patch')
-rw-r--r--patches/server/0750-Disable-component-selector-resolving-in-books-by-def.patch19
1 files changed, 19 insertions, 0 deletions
diff --git a/patches/server/0750-Disable-component-selector-resolving-in-books-by-def.patch b/patches/server/0750-Disable-component-selector-resolving-in-books-by-def.patch
new file mode 100644
index 0000000000..33fd8e47d0
--- /dev/null
+++ b/patches/server/0750-Disable-component-selector-resolving-in-books-by-def.patch
@@ -0,0 +1,19 @@
+From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
+From: Nassim Jahnke <[email protected]>
+Date: Thu, 2 Jun 2022 20:35:58 +0200
+Subject: [PATCH] Disable component selector resolving in books by default
+
+
+diff --git a/src/main/java/net/minecraft/world/item/WrittenBookItem.java b/src/main/java/net/minecraft/world/item/WrittenBookItem.java
+index a324df312d9bb87d9e0962f8028d900933e70c07..258a636a59203c4e5415a89002c6a607338f9514 100644
+--- a/src/main/java/net/minecraft/world/item/WrittenBookItem.java
++++ b/src/main/java/net/minecraft/world/item/WrittenBookItem.java
+@@ -111,7 +111,7 @@ public class WrittenBookItem extends Item {
+
+ public static boolean resolveBookComponents(ItemStack book, @Nullable CommandSourceStack commandSource, @Nullable Player player) {
+ CompoundTag compoundTag = book.getTag();
+- if (compoundTag != null && !compoundTag.getBoolean("resolved")) {
++ if (io.papermc.paper.configuration.GlobalConfiguration.get().itemValidation.resolveSelectorsInBooks && compoundTag != null && !compoundTag.getBoolean("resolved")) { // Paper - Disable component selector resolving in books by default
+ compoundTag.putBoolean("resolved", true);
+ if (!makeSureTagIsValid(compoundTag)) {
+ return false;