Fixed console PM logging both headers
This commit is contained in:
parent
3e4811ca65
commit
68b138949d
|
@ -51,7 +51,8 @@ public class MessageCommand extends Commands {
|
||||||
FPlayer.errMsg(p, Permission.noPerm);
|
FPlayer.errMsg(p, Permission.noPerm);
|
||||||
}
|
}
|
||||||
}else {
|
}else {
|
||||||
String msg = ChatColor.GREEN + "PM from CONSOLE: " + ChatColor.GRAY;
|
String header = ChatColor.GREEN + "PM from CONSOLE: " + ChatColor.GRAY;
|
||||||
|
String msg = "";
|
||||||
String last = args[args.length - 1];
|
String last = args[args.length - 1];
|
||||||
for(int i = 1; i < args.length - 1; i++) {
|
for(int i = 1; i < args.length - 1; i++) {
|
||||||
msg = msg + args[i] + " ";
|
msg = msg + args[i] + " ";
|
||||||
|
@ -62,7 +63,7 @@ public class MessageCommand extends Commands {
|
||||||
if(target == null) {
|
if(target == null) {
|
||||||
FPlayer.errMsg(null,"Invalid player.");
|
FPlayer.errMsg(null,"Invalid player.");
|
||||||
}else {
|
}else {
|
||||||
target.sendMessage(msg);
|
target.sendMessage(header + msg);
|
||||||
plugin.log(Level.INFO, ChatColor.GREEN + "PM to " + target.getName() + ": " + ChatColor.GRAY + msg);
|
plugin.log(Level.INFO, ChatColor.GREEN + "PM to " + target.getName() + ": " + ChatColor.GRAY + msg);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue