Skip to content

Commit

Permalink
chore: Reorder entries in the config menu
Browse files Browse the repository at this point in the history
  • Loading branch information
Steveplays28 committed Oct 8, 2023
1 parent d875649 commit 5117087
Showing 1 changed file with 3 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,21 +8,18 @@
public class RealisticSleepConfig implements ConfigData {
@ConfigEntry.Gui.Tooltip
public boolean sendDawnMessage = true;

@ConfigEntry.Gui.Tooltip
public boolean sendDuskMessage = true;

@ConfigEntry.Gui.Tooltip
public String dawnMessage = "The sun rises.";

@ConfigEntry.Gui.Tooltip
public boolean sendDuskMessage = true;
@ConfigEntry.Gui.Tooltip
public String duskMessage = "The night begins.";

@ConfigEntry.Gui.Tooltip
public boolean sendSleepingMessage = true;
@ConfigEntry.Gui.Tooltip
public boolean showTimeUntilDawn = true;

@ConfigEntry.Gui.Tooltip
public boolean showTimeUntilDusk = true;
@ConfigEntry.Gui.Tooltip
Expand All @@ -46,7 +43,6 @@ public class RealisticSleepConfig implements ConfigData {
public long tickDelay = -1;

public enum SleepSpeedCurve {
@ConfigEntry.Gui.Tooltip
LINEAR
@ConfigEntry.Gui.Tooltip LINEAR
}
}

0 comments on commit 5117087

Please sign in to comment.