Fix compile error in DisplayAskConnectBox stock (bug 5984).

This commit is contained in:
Nicholas Hastings
2014-03-22 17:06:37 -04:00
parent ca2e8e4675
commit af6350176d
+1 -1
View File
@@ -586,7 +586,7 @@ stock ShowMOTDPanel(client, const String:title[], const String:msg[], type=MOTDP
stock DisplayAskConnectBox(client, Float:time, const String:ip[], const String:password[] = "")
{
decl String:destination[288];
FormatEx(destination, "%s/%s", ip, password);
FormatEx(destination, sizeof(destination), "%s/%s", ip, password);
new Handle:Kv = CreateKeyValues("data");
KvSetFloat(Kv, "time", time);
KvSetString(Kv, "title", destination);