Skip to content

Commit

Permalink
added dots
Browse files Browse the repository at this point in the history
  • Loading branch information
TurpCoding authored May 26, 2022
1 parent 66d6abf commit be4c76f
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down Expand Up @@ -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;
Expand Down

0 comments on commit be4c76f

Please sign in to comment.