Fix console chat output

This commit is contained in:
DoctorMacc 2020-10-07 19:44:13 -04:00
parent 977ce4bbec
commit 105f4f0a32
1 changed files with 2 additions and 1 deletions

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));
}
}