- update shadow warrior's PutStringInfo to put newlines in the console automatically (it was this, or update every use of PutStringInfo to have them)

This commit is contained in:
Rachael Alexanderson 2020-01-23 13:05:09 -05:00
parent 52897c0cbb
commit 69ebd9a95d

View file

@ -437,7 +437,7 @@ void PutStringInfo(PLAYERp pp, const char *string)
if (!hud_messages) if (!hud_messages)
return; return;
Printf(PRINT_MEDIUM|PRINT_NOTIFY, "%s", string); // Put it in the console too Printf(PRINT_MEDIUM|PRINT_NOTIFY, "%s\n", string); // Put it in the console too
if (hud_messages == 1) PutStringInfoLine(pp, string); if (hud_messages == 1) PutStringInfoLine(pp, string);
} }