Skip to content

Commit be4c76f

Browse files
authored
added dots
1 parent 66d6abf commit be4c76f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/main/java/io/github/turpcoding/easyreport/ReportCommand.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -204,8 +204,8 @@ public boolean onCommand(CommandSender commandSender, Command command, String s,
204204

205205
String staffNotificationMsg = MessageFormat.format(
206206
mainClass.getConfig().getBoolean("removePluginPrefixFromChatMessages")
207-
? "&a{0} &fjust reported &c{1} &ffor &c{2}"
208-
: "&4&l[EasyReport]&r &a{0} &fjust reported &c{1} &ffor &c{2}"
207+
? "&a{0} &fjust reported &c{1} &ffor &c{2}."
208+
: "&4&l[EasyReport]&r &a{0} &fjust reported &c{1} &ffor &c{2}."
209209
, player.getName(), reportedPlayer.getName(), reportReason);
210210

211211
boolean staffNotified = false;
@@ -250,7 +250,7 @@ public boolean onCommand(CommandSender commandSender, Command command, String s,
250250
if (mainClass.getConfig().getBoolean("discord.enabled")) {
251251
DiscordWebhookAPI.executeWebhook("REPORT",
252252
MessageFormat.format(
253-
"{0} was just reported by {1} for {2}", reportedPlayer.getName(), player.getName(), reportReason)
253+
"{0} was just reported by {1} for {2}.", reportedPlayer.getName(), player.getName(), reportReason)
254254
, Color.GREEN);
255255
}
256256
return true;

0 commit comments

Comments
 (0)