From aeaef72e1436578c98f23cf59f195bdb87d0715b Mon Sep 17 00:00:00 2001 From: Goodlyay Date: Sat, 4 Mar 2017 01:12:13 -0800 Subject: [PATCH] Incredibly important color consistency fix --- ClassicalSharp/Game/InputHandler.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ClassicalSharp/Game/InputHandler.cs b/ClassicalSharp/Game/InputHandler.cs index ba61ed2b7..e7a869149 100644 --- a/ClassicalSharp/Game/InputHandler.cs +++ b/ClassicalSharp/Game/InputHandler.cs @@ -285,9 +285,9 @@ namespace ClassicalSharp { game.autoRotate = !game.autoRotate; Key key = Keys[KeyBind.Autorotate]; if (game.autoRotate) { - game.Chat.Add(" &eAuto rotate is &aenabled. &aPress " + key + " &eto disable."); + game.Chat.Add(" &eAuto rotate is &aenabled. &ePress &a" + key + " &eto disable."); } else { - game.Chat.Add(" &eAuto rotate is &cdisabled. &aPress " + key + " &eto re-enable."); + game.Chat.Add(" &eAuto rotate is &cdisabled. &ePress &a" + key + " &eto re-enable."); } }