Enables bookshelf peeking by default

This commit is contained in:
2025-08-05 04:48:31 +02:00
parent 7f92588e32
commit 73157330d8
2 changed files with 4 additions and 3 deletions

View File

@@ -80,7 +80,7 @@ public enum ConfigOption {
/**
* Whether hitting a bookshelf should display information about the contained books
*/
ENABLE_BOOKSHELF_PEEKING("Options.Enable_Book_Peeking", false),
ENABLE_BOOKSHELF_PEEKING("Options.Enable_Book_Peeking", true),
;
private final String configNode;

View File

@@ -3,7 +3,8 @@ Options:
Save_Books_in_Yaml_Format: true
# The maximum number of duplicates of a saved book allowed
Max_Number_of_Duplicates: 5
# The separator used to separate the book title and the book author
# The separator used to separate the book title and the book author. While this is a ',' by default for backwards
# compatibility, a rarely used character like '¤' is better to prevent restrictions on book titles.
Title-Author_Separator: ","
# The separator used to denote a new line in the book/item lore
Lore_line_separator: "~"
@@ -31,4 +32,4 @@ Options:
# vanilla behavior where a copy of a copy cannot be copied further.
Change_Generation_On_Copy: false
# Whether to enable hitting a chiseled bookshelf while sneaking to see the shelf's contents.
Enable_Book_Peeking: false
Enable_Book_Peeking: true