Skip to content

Commit

Permalink
Fix wrong emoji
Browse files Browse the repository at this point in the history
  • Loading branch information
King-BR committed Nov 1, 2023
1 parent 7a85b81 commit d74b228
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/discordchat/Mindustry/Events/playerLeave.java
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
public class playerLeave {
public static void run(DiscordApi bot, JSONObject config, EventType.PlayerLeave e) throws IOException, InterruptedException {

String msg = ":inbox_tray: **" + stripColors(e.player.name()) + "** left";
String msg = ":outbox_tray: **" + stripColors(e.player.name()) + "** left";
new sendMsgToDiscord(bot, config, msg);
}
}

0 comments on commit d74b228

Please sign in to comment.