Skip to content

Commit

Permalink
Merge branch 'master' into mappings-and-events
Browse files Browse the repository at this point in the history
  • Loading branch information
Xujiayao authored Feb 11, 2024
2 parents 979f18f + 99c5e3f commit 887836b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public static void init() {

if (optional.isEmpty()) {
LOGGER.warn("-----------------------------------------");
LOGGER.warn("MCDC cannot find translations for \"" + CONFIG.generic.language + "\" and uses \"en_us\" by default!");
LOGGER.warn("MCDC cannot find its translations for \"" + CONFIG.generic.language + "\" and uses \"en_us\" by default!");
LOGGER.warn("");
LOGGER.warn("You are welcome to contribute translations!");
LOGGER.warn("Contributing: https://github.com/Xujiayao/MC-Discord-Chat#Contributing");
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/xujiayao/mcdiscordchat/utils/Utils.java
Original file line number Diff line number Diff line change
Expand Up @@ -475,7 +475,7 @@ public static String getStatsCommandMessage(String type, String name) {
sortedlist.sort((c1, c2) -> c2.getValue().compareTo(c1.getValue()));

for (Map.Entry<String, Integer> entry : sortedlist) {
message.append(String.format("%n%-8d %-8s", entry.getValue(), entry.getKey()));
message.append(String.format("\n%-8d %-8s", entry.getValue(), entry.getKey()));
}
}

Expand Down

0 comments on commit 887836b

Please sign in to comment.