1
0
mirror of https://github.com/GeyserMC/Geyser.git synced 2026-01-04 15:31:36 +00:00

Fix console chat output

This commit is contained in:
DoctorMacc
2020-10-07 19:44:13 -04:00
parent 977ce4bbec
commit 105f4f0a32

View File

@@ -30,6 +30,7 @@ import net.minecraft.server.command.ServerCommandSource;
import net.minecraft.text.LiteralText;
import org.geysermc.connector.GeyserConnector;
import org.geysermc.connector.command.CommandSender;
import org.geysermc.connector.common.ChatColor;
public class FabricCommandSender implements CommandSender {
@@ -49,7 +50,7 @@ public class FabricCommandSender implements CommandSender {
try {
source.getPlayer().sendMessage(new LiteralText(message), false);
} catch (CommandSyntaxException e) { // why
GeyserConnector.getInstance().getLogger().info(message);
GeyserConnector.getInstance().getLogger().info(ChatColor.toANSI(message + ChatColor.RESET));
}
}