Skip to content

Commit

Permalink
feat: allow broken links in dictionary of spirits (makes translations…
Browse files Browse the repository at this point in the history
… more flexible)
  • Loading branch information
klikli-dev committed Aug 31, 2024
1 parent fca50c5 commit c654e07
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@ smartbrainlib_version=1.14.5
smartbrainlib_version_range=[1.14.5,)
almost_unified_version=0.5.0
almost_unified_version_range=[0.5.0,)
modonomicon_version=1.99.1
modonomicon_version_range=[1.95.0,)
modonomicon_version=1.103.0
modonomicon_version_range=[1.103.0,)
theurgy_version=1.52.0
theurgy_version_range=[1.47.1,)
per_viam_invenire_version_range=[0.1.57,)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
"allow_open_book_with_invalid_links": true,
"auto_add_read_conditions": true,
"book_content_texture": "modonomicon:textures/gui/book_content.png",
"book_overview_texture": "modonomicon:textures/gui/book_overview.png",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,9 @@ protected BookModel additionalSetup(BookModel book) {
.withCraftingTexture(this.modLoc("textures/gui/book/crafting_textures.png"))
.withGenerateBookItem(false)
.withCustomBookItem(this.modLoc("dictionary_of_spirits"))
.withAutoAddReadConditions(true);
.withAutoAddReadConditions(true)
.withAllowOpenBooksWithInvalidLinks(true)
;
}

//region Getting Started
Expand Down

0 comments on commit c654e07

Please sign in to comment.