Skip to content

Commit

Permalink
Never Trust Intelij
Browse files Browse the repository at this point in the history
  • Loading branch information
MisterCheezeCake committed Aug 25, 2024
1 parent 616cb65 commit 96a24db
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/main/java/wtf/cheeze/sbt/features/huds/SkillHUD.java
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ public static OptionGroup getGroup(ConfigImpl defaults, ConfigImpl config) {
.binding(
defaults.huds.skills.enabled,
() -> config.huds.skills.enabled,
value -> config.huds.skills.enabled = value
value -> config.huds.skills.enabled = (Boolean) value
)
.build();

Expand All @@ -260,7 +260,7 @@ public static OptionGroup getGroup(ConfigImpl defaults, ConfigImpl config) {
.binding(
defaults.huds.skills.actionsLeft,
() -> config.huds.skills.actionsLeft,
value -> config.huds.skills.actionsLeft = value
value -> config.huds.skills.actionsLeft = (Boolean) value
)
.build();
var abridgeDenominator = Option.<Boolean>createBuilder()
Expand All @@ -270,7 +270,7 @@ public static OptionGroup getGroup(ConfigImpl defaults, ConfigImpl config) {
.binding(
defaults.huds.skills.abridgeDenominator,
() -> config.huds.skills.abridgeDenominator,
value -> config.huds.skills.abridgeDenominator = value
value -> config.huds.skills.abridgeDenominator = (Boolean) value
)
.build();

Expand Down

0 comments on commit 96a24db

Please sign in to comment.