diff --git a/src/p_user.cpp b/src/p_user.cpp index d1e20266d..6b3e408fd 100644 --- a/src/p_user.cpp +++ b/src/p_user.cpp @@ -442,7 +442,7 @@ void player_t::SetLogText (const char *text) { // Print log text to console AddToConsole(-1, TEXTCOLOR_GOLD); - AddToConsole(-1, GStrings(LogText)); + AddToConsole(-1, GStrings(text[0] == '$' ? text + 1 : text)); AddToConsole(-1, "\n"); } }