Skip to content

Commit

Permalink
Fix settings inconsistency
Browse files Browse the repository at this point in the history
  • Loading branch information
UserNugget committed Apr 3, 2024
1 parent a8243a0 commit 5e7a811
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/main/java/net/elytrium/fastmotd/Settings.java
Original file line number Diff line number Diff line change
Expand Up @@ -74,11 +74,11 @@ public static class MAIN {
@CommentValue("See https://wiki.vg/Protocol_version_numbers"),
})
public static class VERSIONS {
@Comment(@CommentValue("null = disabled"))
@Comment(@CommentValue("{} = disabled"))
public Map<String, List<String>> DESCRIPTIONS = Map.of("757-759", List.of("<bold><red>FastMOTD</red></bold>{NL} -> Supports separate MOTDs for different versions."));
@Comment(@CommentValue("null = disabled"))
@Comment(@CommentValue("{} = disabled"))
public Map<String, List<String>> FAVICONS = Map.of("756-758", List.of("second-server-icon.png"));
@Comment(@CommentValue("null = disabled"))
@Comment(@CommentValue("{} = disabled"))
public Map<String, List<String>> INFORMATION = Map.of("757-758", List.of("Your", "protocol", "version", "is 757 or 758"));
}

Expand Down Expand Up @@ -109,11 +109,11 @@ public static class MAINTENANCE {
@CommentValue("See https://wiki.vg/Protocol_version_numbers"),
})
public static class VERSIONS {
@Comment(@CommentValue("null = disabled"))
@Comment(@CommentValue("{} = disabled"))
public Map<String, List<String>> DESCRIPTIONS = Map.of("757-759", List.of("<bold><red>FastMOTD</red></bold>{NL} -> Really Fast."));
@Comment(@CommentValue("null = disabled"))
@Comment(@CommentValue("{} = disabled"))
public Map<String, List<String>> FAVICONS = Map.of("758-758", List.of("second-server-icon.png"));
@Comment(@CommentValue("null = disabled"))
@Comment(@CommentValue("{} = disabled"))
public Map<String, List<String>> INFORMATION = Map.of("756-759", List.of("Server is", "under", "maintenance"));
}

Expand Down

0 comments on commit 5e7a811

Please sign in to comment.