Switch to yellow instead of blue, as its more readable in console.
Dieser Commit ist enthalten in:
Ursprung
c443fc3da6
Commit
b68579bcb7
@ -260,7 +260,7 @@ class CommandPacket extends CommandBase {
|
|||||||
}
|
}
|
||||||
|
|
||||||
updatePacketListener();
|
updatePacketListener();
|
||||||
sendMessageSilently(sender, ChatColor.BLUE + "Added listener " + getWhitelistInfo(listener));
|
sendMessageSilently(sender, ChatColor.YELLOW + "Added listener " + getWhitelistInfo(listener));
|
||||||
}
|
}
|
||||||
|
|
||||||
private void executeRemoveCommand(CommandSender sender, Set<PacketType> removal) {
|
private void executeRemoveCommand(CommandSender sender, Set<PacketType> removal) {
|
||||||
@ -268,7 +268,7 @@ class CommandPacket extends CommandBase {
|
|||||||
extendedTypes.removeAll(removal);
|
extendedTypes.removeAll(removal);
|
||||||
compareTypes.removeAll(removal);
|
compareTypes.removeAll(removal);
|
||||||
updatePacketListener();
|
updatePacketListener();
|
||||||
sendMessageSilently(sender, ChatColor.BLUE + "Removing packet types.");
|
sendMessageSilently(sender, ChatColor.YELLOW + "Removing packet types.");
|
||||||
}
|
}
|
||||||
|
|
||||||
private void executeNamesCommand(CommandSender sender, Set<PacketType> types) {
|
private void executeNamesCommand(CommandSender sender, Set<PacketType> types) {
|
||||||
@ -276,7 +276,7 @@ class CommandPacket extends CommandBase {
|
|||||||
|
|
||||||
// Print the equivalent name of every given ID
|
// Print the equivalent name of every given ID
|
||||||
for (PacketType type : types) {
|
for (PacketType type : types) {
|
||||||
messages.add(ChatColor.BLUE + type.toString());
|
messages.add(ChatColor.YELLOW + type.toString());
|
||||||
}
|
}
|
||||||
|
|
||||||
if (sender instanceof Player && messages.size() > 0 && messages.size() > PAGE_LINE_COUNT) {
|
if (sender instanceof Player && messages.size() > 0 && messages.size() > PAGE_LINE_COUNT) {
|
||||||
|
@ -105,7 +105,7 @@ class CommandProtocol extends CommandBase {
|
|||||||
Runnable notify = new Runnable() {
|
Runnable notify = new Runnable() {
|
||||||
@Override
|
@Override
|
||||||
public void run() {
|
public void run() {
|
||||||
sender.sendMessage(ChatColor.BLUE + "[ProtocolLib] " + updater.getResult());
|
sender.sendMessage(ChatColor.YELLOW + "[ProtocolLib] " + updater.getResult());
|
||||||
|
|
||||||
updater.removeListener(this);
|
updater.removeListener(this);
|
||||||
updateFinished();
|
updateFinished();
|
||||||
@ -176,6 +176,6 @@ class CommandProtocol extends CommandBase {
|
|||||||
|
|
||||||
public void reloadConfiguration(CommandSender sender) {
|
public void reloadConfiguration(CommandSender sender) {
|
||||||
plugin.reloadConfig();
|
plugin.reloadConfig();
|
||||||
sender.sendMessage(ChatColor.BLUE + "Reloaded configuration!");
|
sender.sendMessage(ChatColor.YELLOW + "Reloaded configuration!");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
In neuem Issue referenzieren
Einen Benutzer sperren