From be4c76ff3d8773e0c87698a7d0672099a38b3be3 Mon Sep 17 00:00:00 2001 From: Turp <98425483+TurpCoding@users.noreply.github.com> Date: Wed, 25 May 2022 20:23:14 -0700 Subject: [PATCH] added dots --- .../java/io/github/turpcoding/easyreport/ReportCommand.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/java/io/github/turpcoding/easyreport/ReportCommand.java b/src/main/java/io/github/turpcoding/easyreport/ReportCommand.java index 8795c92..a579810 100644 --- a/src/main/java/io/github/turpcoding/easyreport/ReportCommand.java +++ b/src/main/java/io/github/turpcoding/easyreport/ReportCommand.java @@ -204,8 +204,8 @@ public boolean onCommand(CommandSender commandSender, Command command, String s, String staffNotificationMsg = MessageFormat.format( mainClass.getConfig().getBoolean("removePluginPrefixFromChatMessages") - ? "&a{0} &fjust reported &c{1} &ffor &c{2}" - : "&4&l[EasyReport]&r &a{0} &fjust reported &c{1} &ffor &c{2}" + ? "&a{0} &fjust reported &c{1} &ffor &c{2}." + : "&4&l[EasyReport]&r &a{0} &fjust reported &c{1} &ffor &c{2}." , player.getName(), reportedPlayer.getName(), reportReason); boolean staffNotified = false; @@ -250,7 +250,7 @@ public boolean onCommand(CommandSender commandSender, Command command, String s, if (mainClass.getConfig().getBoolean("discord.enabled")) { DiscordWebhookAPI.executeWebhook("REPORT", MessageFormat.format( - "{0} was just reported by {1} for {2}", reportedPlayer.getName(), player.getName(), reportReason) + "{0} was just reported by {1} for {2}.", reportedPlayer.getName(), player.getName(), reportReason) , Color.GREEN); } return true;