Incredibly important color consistency fix

This commit is contained in:
Goodlyay 2017-03-04 01:12:13 -08:00
parent d68d17eaa5
commit aeaef72e14

View File

@ -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.");
}
}