Increased ServerCommandEx's internal buffer (bug 5169, r=asherkin).

This commit is contained in:
Brian Simon 2011-12-07 12:13:52 -05:00
parent 01c94596a4
commit eedf8b845c

View File

@ -421,7 +421,7 @@ public Action:Command_Rcon(client, args)
{
ServerCommand("%s", argstring);
} else {
new String:responseBuffer[1024];
new String:responseBuffer[4096];
ServerCommandEx(responseBuffer, sizeof(responseBuffer), "%s", argstring);
ReplyToCommand(client, responseBuffer);
}