Skip to content

Commit

Permalink
Fix some issues
Browse files Browse the repository at this point in the history
  • Loading branch information
ThatMG393 committed Mar 1, 2024
1 parent 52e66bf commit 8dfc083
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
@SuppressWarnings("rawtypes")
public class COORDSCategory extends AbstractConfigCategory {
public COORDSCategory() {
super(Text.translatable("usefulhuds.config.COORDS.title"));
super(Text.translatable("usefulhuds.config.coords.title"));
}

@Override
Expand Down Expand Up @@ -42,7 +42,7 @@ public ArrayList<AbstractConfigListEntry> getEntries() {
Text.translatable("usefulhuds.config.hudoffsety"),
config.COORDS.offsetY,
0, DisplayUtils.getScreenScaledWH()[1]
).setDefaultValue(defaultConfig.COORDS.offsetX)
).setDefaultValue(defaultConfig.COORDS.offsetY)
.setSaveConsumer(v -> config.COORDS.offsetY = v)
.build()
);
Expand Down

0 comments on commit 8dfc083

Please sign in to comment.