Bug 3610 - Server sending unnecessary newline with SV_ConSay_F
Status: RESOLVED FIXED
Alias: None
Product: ioquake3
Classification: Unclassified
Component: Platform
Version: unspecified
Hardware: All All
: P3 minor
Assignee: Zachary J. Slater
QA Contact: ioquake3 bugzilla mailing list
URL:
: 3691
Depends on:
Blocks:
 
Reported: 2008-04-22 18:38 EDT by Tyler Schwend
Modified: 2008-07-05 19:52:35 EDT
1 user (show)

See Also:


Attachments
Patch to prevent server sending unneeded newlines in chat. (326 bytes, patch)
2008-04-22 18:50 EDT, Tyler Schwend

Description Tyler Schwend 2008-04-22 18:38:29 EDT
When sending text chats from the console, the server is appending a \n to the end of the chat. Before echoing the message on the client side, the client also appends a \n. The result is wasted space and an unnecessarily flooded chat window. Formatting (by appending a mandatory \n) should be done on the client side. The following diff removes the \n being sent from the server side:

slipgate:~/svn/ioquake3/code/server# diff sv_ccmds.c sv_ccmds.c.orig
969c969
<       SV_SendServerCommand(NULL, "chat \"%s\"", text);
---
>       SV_SendServerCommand(NULL, "chat \"%s\n\"", text);
Comment 1 Tyler Schwend 2008-04-22 18:50:49 EDT
Created attachment 1731 [details]
Patch to prevent server sending unneeded newlines in chat.
Comment 2 Ben Millwood 2008-06-26 05:08:36 EDT
*** Bug 3691 has been marked as a duplicate of this bug. ***
Comment 3 Tim Angus 2008-07-05 19:52:35 EDT
Fixed in r1405.