Skip to content

Commit

Permalink
minor fixes to default config
Browse files Browse the repository at this point in the history
Signed-off-by: unilock <[email protected]>
  • Loading branch information
unilock committed Mar 7, 2024
1 parent 1494570 commit 9a21282
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/main/java/cc/unilock/nilcord/config/NilcordConfig.java
Original file line number Diff line number Diff line change
Expand Up @@ -62,15 +62,15 @@ public static final class DiscordFormatting extends Section {

@Comment("Player join messages")
@Comment("Additional placeholders: N/A")
public final TrackedValue<String> join_message = value("**<username>** joined the game");
public final TrackedValue<String> join_message = value("> **<username> joined the game**");

@Comment("Player leave messages")
@Comment("Additional placeholders: N/A")
public final TrackedValue<String> leave_message = value("**<username>** left the game");
public final TrackedValue<String> leave_message = value("> **<username> left the game**");

@Comment("Player achievement messages")
@Comment("Additional placeholders: <achievement_description> <achievement_title>")
public final TrackedValue<String> achievement_message = value("**<username>** has just earned the achievement **[<achievement_title>]**\n> \\> _<achievement_description>_");
public final TrackedValue<String> achievement_message = value("> **<username>** has just earned the achievement **[<achievement_title>]**\n> \\> _<achievement_description>_");

@Comment("Player death messages")
@Comment("Additional placeholders: <death_message>")
Expand Down

0 comments on commit 9a21282

Please sign in to comment.