From 0c88c18ea060853b32d5b23684d9323bfd3840ae Mon Sep 17 00:00:00 2001 From: Amber Alex <13611718+mxamber@users.noreply.github.com> Date: Sat, 26 Sep 2020 16:09:34 +0200 Subject: [PATCH] Change color of "feature not handled" from gray to red (#1265) Changing the color for the "terrain/inventories/entities not handled for that version" message from gray to red. --- MinecraftClient/Protocol/Handlers/Protocol16.cs | 6 +++--- MinecraftClient/Protocol/Handlers/Protocol18.cs | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/MinecraftClient/Protocol/Handlers/Protocol16.cs b/MinecraftClient/Protocol/Handlers/Protocol16.cs index 0bdbdadc..8377b8a9 100644 --- a/MinecraftClient/Protocol/Handlers/Protocol16.cs +++ b/MinecraftClient/Protocol/Handlers/Protocol16.cs @@ -38,19 +38,19 @@ namespace MinecraftClient.Protocol.Handlers if (Handler.GetTerrainEnabled()) { - ConsoleIO.WriteLineFormatted("§8Terrain & Movements currently not handled for that MC version."); + ConsoleIO.WriteLineFormatted("§cTerrain & Movements currently not handled for that MC version."); Handler.SetTerrainEnabled(false); } if (handler.GetInventoryEnabled()) { - ConsoleIO.WriteLineFormatted("§8Inventories are currently not handled for that MC version."); + ConsoleIO.WriteLineFormatted("§cInventories are currently not handled for that MC version."); handler.SetInventoryEnabled(false); } if (handler.GetEntityHandlingEnabled()) { - ConsoleIO.WriteLineFormatted("§8Entities are currently not handled for that MC version."); + ConsoleIO.WriteLineFormatted("§cEntities are currently not handled for that MC version."); handler.SetEntityHandlingEnabled(false); } } diff --git a/MinecraftClient/Protocol/Handlers/Protocol18.cs b/MinecraftClient/Protocol/Handlers/Protocol18.cs index 5a8a5807..639b58f0 100644 --- a/MinecraftClient/Protocol/Handlers/Protocol18.cs +++ b/MinecraftClient/Protocol/Handlers/Protocol18.cs @@ -81,19 +81,19 @@ namespace MinecraftClient.Protocol.Handlers if (handler.GetTerrainEnabled() && protocolversion > MC1152Version) { - ConsoleIO.WriteLineFormatted("§8Terrain & Movements currently not handled for that MC version."); + ConsoleIO.WriteLineFormatted("§cTerrain & Movements currently not handled for that MC version."); handler.SetTerrainEnabled(false); } if (handler.GetInventoryEnabled() && (protocolversion < MC110Version || protocolversion > MC1163Version)) { - ConsoleIO.WriteLineFormatted("§8Inventories are currently not handled for that MC version."); + ConsoleIO.WriteLineFormatted("§cInventories are currently not handled for that MC version."); handler.SetInventoryEnabled(false); } if (handler.GetEntityHandlingEnabled() && (protocolversion < MC110Version || protocolversion > MC1163Version)) { - ConsoleIO.WriteLineFormatted("§8Entities are currently not handled for that MC version."); + ConsoleIO.WriteLineFormatted("§cEntities are currently not handled for that MC version."); handler.SetEntityHandlingEnabled(false); }