From eedf8b845cce628d724a3749b5b67d49ef3edfc8 Mon Sep 17 00:00:00 2001 From: Brian Simon Date: Wed, 7 Dec 2011 12:13:52 -0500 Subject: [PATCH] Increased ServerCommandEx's internal buffer (bug 5169, r=asherkin). --- plugins/basecommands.sp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/basecommands.sp b/plugins/basecommands.sp index 5935c664..1b574d76 100644 --- a/plugins/basecommands.sp +++ b/plugins/basecommands.sp @@ -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); }