diff --git a/sourcemod/scripting/include/system2/legacy.inc b/sourcemod/scripting/include/system2/legacy.inc index 7827853..573f4ad 100644 --- a/sourcemod/scripting/include/system2/legacy.inc +++ b/sourcemod/scripting/include/system2/legacy.inc @@ -256,7 +256,7 @@ stock void URLEncode(char[] stringToEncode, int maxlength, char[] safe = "/", bo char sChar[8]; char sReplaceChar[8]; - for (new int i = 1; i < 256; i++) + for (int i = 1; i < 256; i++) { // Skip the '%' double replace ftw.. if (i == 37) @@ -281,4 +281,4 @@ stock void URLEncode(char[] stringToEncode, int maxlength, char[] safe = "/", bo ReplaceString(stringToEncode, maxlength, sChar, sReplaceChar); } } -} \ No newline at end of file +}