diff --git a/src/main/java/net/knarcraft/bookswithoutborders/config/ConfigOption.java b/src/main/java/net/knarcraft/bookswithoutborders/config/ConfigOption.java index c72e6d6..b984702 100644 --- a/src/main/java/net/knarcraft/bookswithoutborders/config/ConfigOption.java +++ b/src/main/java/net/knarcraft/bookswithoutborders/config/ConfigOption.java @@ -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; diff --git a/src/main/resources/config.yml b/src/main/resources/config.yml index 355b248..e413897 100644 --- a/src/main/resources/config.yml +++ b/src/main/resources/config.yml @@ -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 \ No newline at end of file + Enable_Book_Peeking: true \ No newline at end of file