mirror of
https://github.com/BX-Team/DivineMC.git
synced 2025-12-23 08:49:18 +00:00
I'll make some changes now, so skipping build Changelog: * add CarpetFixes optimizations * fix optimizations config * lithium optimizations * add Carpet Fixes Sheep Optimization * add Async Pathfinding; add C2ME opts math * add 2 vmp patches * New performance patches; update README and wiki README * update configuration on wiki * update wiki main page * Updated Upstream (Purpur) * fix conflicts * make "Don't save Fireworks" patch configurable * Disable memory reserve allocating * Fix MC-172801 * resolve conflicts * add bstats to readme * dd custom list of forks * update logo link
21 lines
943 B
Diff
21 lines
943 B
Diff
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
From: NONPLAYT <76615486+NONPLAYT@users.noreply.github.com>
|
|
Date: Sun, 16 Jul 2023 12:21:09 +0300
|
|
Subject: [PATCH] Fix MC-7569
|
|
|
|
Original post on Mojira: https://bugs.mojang.com/browse/MC-7569
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/rcon/RconConsoleSource.java b/src/main/java/net/minecraft/server/rcon/RconConsoleSource.java
|
|
index a04cf04cb694237ec77b38fc576f0dfc9264a25a..47a00e408d96fd9ade864ec4e278e1eb006722ef 100644
|
|
--- a/src/main/java/net/minecraft/server/rcon/RconConsoleSource.java
|
|
+++ b/src/main/java/net/minecraft/server/rcon/RconConsoleSource.java
|
|
@@ -55,7 +55,7 @@ public class RconConsoleSource implements CommandSource {
|
|
|
|
@Override
|
|
public void sendSystemMessage(Component message) {
|
|
- this.buffer.append(message.getString());
|
|
+ this.buffer.append(message.getString()).append(System.lineSeparator());
|
|
}
|
|
|
|
@Override
|