Skip to content

Commit

Permalink
there
Browse files Browse the repository at this point in the history
  • Loading branch information
AViewFromTheTop committed Jun 18, 2024
1 parent 4e68934 commit 5daeaed
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ Put the changelog BELOW the dashes. ANYTHING ABOVE IS IGNORED
- Fixed Display Lanterns not properly rendering their contents when updated.
- Fixed some loot tables not working in 1.21+.
- Fixed Termite particles not rendering in 1.21+.
- Fixed a broken translation string in the `Entity` config.
- Fixed Cloud movement not working properly.
- Added the Reach Boost effect to Beacons, thanks to a suggestion by wet.noodle/Ashlyn.
- Added the `Reach Boost Beacons` config to toggle this.
- Updated the Reach Boost icon, thanks to Zhen!
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -513,7 +513,7 @@ public static void setupEntries(@NotNull ConfigCategory category, @NotNull Confi
entryBuilder.startBooleanToggle(text("warden_custom_tendrils"), modifiedWarden.wardenCustomTendrils)
.setDefaultValue(defaultConfig.warden.wardenCustomTendrils)
.setSaveConsumer(newValue -> warden.wardenCustomTendrils = newValue)
.setYesNoTextSupplier(bool -> text("warden_custom_tendrils." + bool))
.setYesNoTextSupplier(bool -> text("improved." + bool))
.setTooltip(tooltip("warden_custom_tendrils"))
.build(),
warden.getClass(),
Expand Down

0 comments on commit 5daeaed

Please sign in to comment.