Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improvement: Default Custom Scoreboard Config #3126

Merged
merged 4 commits into from
Dec 31, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ public String toString() {
@Expose
@ConfigOption(name = "SkyBlock Time Exact Minutes", desc = "Display the exact minutes in the SkyBlock time, rather than only 10 minute increments.")
@ConfigEditorBoolean
public boolean skyblockTimeExactMinutes = true;
public boolean skyblockTimeExactMinutes = false;

@Expose
@ConfigOption(name = "Date in Lobby Code", desc = "Show the current date infront of the server name, like Hypixel does.")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,6 @@ public class EventsConfig {
@Expose
@ConfigOption(name = "Show all active events", desc = "Show all active events in the scoreboard instead of the one with the highest priority.")
@ConfigEditorBoolean
public boolean showAllActiveEvents = false;
public boolean showAllActiveEvents = true;

}
Original file line number Diff line number Diff line change
Expand Up @@ -87,28 +87,29 @@ enum class ScoreboardConfigElement(val element: ScoreboardElement) {
@JvmField
val defaultOptions = listOf(
TITLE,
LOBBY_CODE,
EMPTY_LINE,
DATE,
TIME,
ISLAND,
PLAYER_AMOUNT,
LOCATION,
VISITING,
PROFILE,
EMPTY_LINE2,
PURSE,
BANK,
MOTES,
BANK,
BITS,
COPPER,
GEMS,
NORTH_STARS,
HEAT,
COLD,
EMPTY_LINE,
ISLAND,
LOCATION,
LOBBY_CODE,
PLAYER_AMOUNT,
VISITING,
EMPTY_LINE2,
DATE,
TIME,
NORTH_STARS,
SOULFLOW,
EMPTY_LINE3,
EVENTS,
COOKIE,
EMPTY_LINE3,
QUIVER,
POWER,
TUNING,
Expand Down
Loading