Fix jline in eclipse

This commit is contained in:
Melledy 2022-05-03 21:06:08 -07:00
parent 590c111c96
commit 1ea24be087

View File

@ -14,7 +14,7 @@ public class JlineLogbackAppender extends ConsoleAppender<ILoggingEvent> {
return;
}
Arrays.stream(
new String(encoder.encode(eventObject)).split("\n")
new String(encoder.encode(eventObject)).split("\n\r")
).forEach(Grasscutter.getConsole()::printAbove);
}
}