mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-07 19:12:22 +01:00
11 lines
905 B
Diff
11 lines
905 B
Diff
--- a/net/minecraft/world/item/WrittenBookItem.java
|
|
+++ b/net/minecraft/world/item/WrittenBookItem.java
|
|
@@ -41,7 +41,7 @@
|
|
|
|
public static boolean resolveBookComponents(ItemStack book, CommandSourceStack commandSource, @Nullable Player player) {
|
|
WrittenBookContent writtenBookContent = book.get(DataComponents.WRITTEN_BOOK_CONTENT);
|
|
- if (writtenBookContent != null && !writtenBookContent.resolved()) {
|
|
+ if (io.papermc.paper.configuration.GlobalConfiguration.get().itemValidation.resolveSelectorsInBooks && writtenBookContent != null && !writtenBookContent.resolved()) { // Paper - Disable component selector resolving in books by default
|
|
WrittenBookContent writtenBookContent2 = writtenBookContent.resolve(commandSource, player);
|
|
if (writtenBookContent2 != null) {
|
|
book.set(DataComponents.WRITTEN_BOOK_CONTENT, writtenBookContent2);
|