mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-10 20:59:54 +01:00
Strip ANSI colours from ServerGUI
This commit is contained in:
parent
dad61762f8
commit
8160e299d0
19
nms-patches/ServerGUI.patch
Normal file
19
nms-patches/ServerGUI.patch
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
--- a/net/minecraft/server/ServerGUI.java
|
||||||
|
+++ b/net/minecraft/server/ServerGUI.java
|
||||||
|
@@ -159,6 +159,7 @@
|
||||||
|
this.e.forEach(Runnable::run);
|
||||||
|
}
|
||||||
|
|
||||||
|
+ private static final java.util.regex.Pattern ANSI = java.util.regex.Pattern.compile("\\x1B\\[([0-9]{1,2}(;[0-9]{1,2})*)?[m|K]"); // CraftBukkit
|
||||||
|
public void a(JTextArea jtextarea, JScrollPane jscrollpane, String s) {
|
||||||
|
if (!SwingUtilities.isEventDispatchThread()) {
|
||||||
|
SwingUtilities.invokeLater(() -> {
|
||||||
|
@@ -174,7 +175,7 @@
|
||||||
|
}
|
||||||
|
|
||||||
|
try {
|
||||||
|
- document.insertString(document.getLength(), s, (AttributeSet) null);
|
||||||
|
+ document.insertString(document.getLength(), ANSI.matcher(s).replaceAll(""), (AttributeSet) null); // CraftBukkit
|
||||||
|
} catch (BadLocationException badlocationexception) {
|
||||||
|
;
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user