mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2025-04-04 10:46:23 +02:00
Fix formatting
This commit is contained in:
parent
e3e2def809
commit
64871b4c37
@ -297,7 +297,6 @@ public class mcPlayerListener implements Listener {
|
|||||||
Set<Player> recipients = event.getRecipients();
|
Set<Player> recipients = event.getRecipients();
|
||||||
|
|
||||||
Set<Player> intendedRecipients = new HashSet<Player>();
|
Set<Player> intendedRecipients = new HashSet<Player>();
|
||||||
String header = "";
|
|
||||||
ChatColor color = null;
|
ChatColor color = null;
|
||||||
|
|
||||||
if (partyChat || adminChat) {
|
if (partyChat || adminChat) {
|
||||||
@ -310,7 +309,6 @@ public class mcPlayerListener implements Listener {
|
|||||||
}
|
}
|
||||||
|
|
||||||
color = ChatColor.GREEN;
|
color = ChatColor.GREEN;
|
||||||
header = color + "[P] (" + PP.getParty() + ") ";
|
|
||||||
|
|
||||||
for (Player x : plugin.getServer().getOnlinePlayers()) {
|
for (Player x : plugin.getServer().getOnlinePlayers()) {
|
||||||
if (Party.getInstance().inSameParty(player, x)) {
|
if (Party.getInstance().inSameParty(player, x)) {
|
||||||
@ -318,21 +316,21 @@ public class mcPlayerListener implements Listener {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
event.setFormat(color + "(" + ChatColor.WHITE + "%1$s" + color + ") %2$s");
|
||||||
}
|
}
|
||||||
|
|
||||||
if (adminChat) {
|
if (adminChat) {
|
||||||
color = ChatColor.AQUA;
|
color = ChatColor.AQUA;
|
||||||
header = color + "[A] ";
|
|
||||||
|
|
||||||
for (Player x : plugin.getServer().getOnlinePlayers()) {
|
for (Player x : plugin.getServer().getOnlinePlayers()) {
|
||||||
if (x.isOp() || mcPermissions.getInstance().adminChat(x)) {
|
if (x.isOp() || mcPermissions.getInstance().adminChat(x)) {
|
||||||
intendedRecipients.add(x);
|
intendedRecipients.add(x);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
event.setFormat(color + "{" + ChatColor.WHITE + "%1$s" + color + "} %2$s");
|
||||||
}
|
}
|
||||||
|
|
||||||
recipients.retainAll(intendedRecipients);
|
recipients.retainAll(intendedRecipients);
|
||||||
event.setFormat(header + "<" + ChatColor.WHITE + "%1$s" + color + "> %2$s");
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user