mirror of
https://github.com/UberGames/ioef.git
synced 2024-11-28 06:52:35 +00:00
Added missing newlines to game dedicated chat messages.
This commit is contained in:
parent
0724458818
commit
fd0d156338
1 changed files with 2 additions and 2 deletions
|
@ -495,11 +495,11 @@ qboolean ConsoleCommand( void ) {
|
||||||
|
|
||||||
if (g_dedicated.integer) {
|
if (g_dedicated.integer) {
|
||||||
if (Q_stricmp (cmd, "say") == 0) {
|
if (Q_stricmp (cmd, "say") == 0) {
|
||||||
trap_SendServerCommand( -1, va("print \"server: %s\"", ConcatArgs(1) ) );
|
trap_SendServerCommand( -1, va("print \"server: %s\n\"", ConcatArgs(1) ) );
|
||||||
return qtrue;
|
return qtrue;
|
||||||
}
|
}
|
||||||
// everything else will also be printed as a say command
|
// everything else will also be printed as a say command
|
||||||
trap_SendServerCommand( -1, va("print \"server: %s\"", ConcatArgs(0) ) );
|
trap_SendServerCommand( -1, va("print \"server: %s\n\"", ConcatArgs(0) ) );
|
||||||
return qtrue;
|
return qtrue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue