2022-06-09 10:51:45 +02:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
2022-08-01 16:01:20 +02:00
|
|
|
From: Nassim Jahnke <nassim@njahnke.dev>
|
2022-06-09 10:51:45 +02:00
|
|
|
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
|
2023-09-22 19:31:02 +02:00
|
|
|
index 092f552ca197a07f6214b07c3eda47b05165d35a..02c3e06f58aafc2fc6cbcb73ef947c7ed1674cc5 100644
|
2022-06-09 10:51:45 +02:00
|
|
|
--- 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
|
|
|
|
compoundTag.putBoolean("resolved", true);
|
|
|
|
if (!makeSureTagIsValid(compoundTag)) {
|
|
|
|
return false;
|