geforkt von Mirrors/Paper
Added missed colors to ColouredConsoleSender. Thanks flames!
By: EvilSeph <evilseph@gmail.com>
Dieser Commit ist enthalten in:
Ursprung
ceab047443
Commit
6d20f543c8
@ -21,16 +21,20 @@ public class ColouredConsoleSender extends ConsoleCommandSender {
|
||||
this.terminal = reader.getTerminal();
|
||||
|
||||
replacements.put(ChatColor.BLACK, ANSICodes.attrib(0));
|
||||
replacements.put(ChatColor.RED, ANSICodes.attrib(31));
|
||||
replacements.put(ChatColor.DARK_RED, ANSICodes.attrib(31));
|
||||
replacements.put(ChatColor.GREEN, ANSICodes.attrib(32));
|
||||
replacements.put(ChatColor.DARK_GREEN, ANSICodes.attrib(32));
|
||||
replacements.put(ChatColor.YELLOW, ANSICodes.attrib(33));
|
||||
replacements.put(ChatColor.BLUE, ANSICodes.attrib(34));
|
||||
replacements.put(ChatColor.DARK_BLUE, ANSICodes.attrib(34));
|
||||
replacements.put(ChatColor.LIGHT_PURPLE, ANSICodes.attrib(35));
|
||||
replacements.put(ChatColor.DARK_GREEN, ANSICodes.attrib(32));
|
||||
replacements.put(ChatColor.DARK_AQUA, ANSICodes.attrib(36));
|
||||
replacements.put(ChatColor.DARK_RED, ANSICodes.attrib(31));
|
||||
replacements.put(ChatColor.DARK_PURPLE, ANSICodes.attrib(35));
|
||||
replacements.put(ChatColor.GOLD, ANSICodes.attrib(33));
|
||||
replacements.put(ChatColor.GRAY, ANSICodes.attrib(37));
|
||||
replacements.put(ChatColor.DARK_GRAY, ANSICodes.attrib(0));
|
||||
replacements.put(ChatColor.BLUE, ANSICodes.attrib(34));
|
||||
replacements.put(ChatColor.GREEN, ANSICodes.attrib(32));
|
||||
replacements.put(ChatColor.AQUA, ANSICodes.attrib(36));
|
||||
replacements.put(ChatColor.RED, ANSICodes.attrib(31));
|
||||
replacements.put(ChatColor.LIGHT_PURPLE, ANSICodes.attrib(35));
|
||||
replacements.put(ChatColor.YELLOW, ANSICodes.attrib(33));
|
||||
replacements.put(ChatColor.WHITE, ANSICodes.attrib(37));
|
||||
}
|
||||
|
||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren