- Fixed "Messages ON" not being printed.

This commit is contained in:
drfrag 2020-12-30 00:41:19 +01:00 committed by Rachael Alexanderson
parent 9bd07e5c83
commit 421b6a0343

View file

@ -480,13 +480,13 @@ CCMD (togglemessages)
{ {
if (show_messages) if (show_messages)
{ {
Printf("%s\n", GStrings("MSGOFF")); Printf(TEXTCOLOR_RED "%s\n", GStrings("MSGOFF"));
show_messages = false; show_messages = false;
} }
else else
{ {
Printf("%s\n", GStrings("MSGON"));
show_messages = true; show_messages = true;
Printf(TEXTCOLOR_RED "%s\n", GStrings("MSGON"));
} }
} }