Skip to content

Commit

Permalink
Added description to hideEmptyTooltips option. (#893)
Browse files Browse the repository at this point in the history
  • Loading branch information
aiden-powers authored Aug 5, 2024
1 parent da041ea commit d99528b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ public static ConfigCategory create(SkyblockerConfig defaults, SkyblockerConfig
.build())
.option(Option.<Boolean>createBuilder()
.name(Text.translatable("skyblocker.config.uiAndVisuals.hideEmptyTooltips"))
.description(OptionDescription.of(Text.translatable("skyblocker.config.uiAndVisuals.hideEmptyTooltips.@Tooltip")))
.binding(defaults.uiAndVisuals.hideEmptyTooltips,
() -> config.uiAndVisuals.hideEmptyTooltips,
newValue -> config.uiAndVisuals.hideEmptyTooltips = newValue)
Expand Down
1 change: 1 addition & 0 deletions src/main/resources/assets/skyblocker/lang/en_us.json
Original file line number Diff line number Diff line change
Expand Up @@ -228,6 +228,7 @@
"skyblocker.config.general.acceptReparty": "Auto accept Reparty",

"skyblocker.config.uiAndVisuals.hideEmptyTooltips": "Hide empty item tooltips in menus",
"skyblocker.config.uiAndVisuals.hideEmptyTooltips.@Tooltip": "Hides the tooltip of an item if it doesn't have any information to display. Also blocks clicks on filler items like glass panes.",

"skyblocker.config.general.hitbox": "Hitboxes",
"skyblocker.config.general.hitbox.oldFarmlandHitbox": "Enable 1.8 farmland hitbox",
Expand Down

0 comments on commit d99528b

Please sign in to comment.