Increased ServerQuery buffer size

This commit is contained in:
Garry Newman 2017-04-12 13:07:42 +01:00
parent f693bff938
commit bb846c28aa

View File

@ -12,7 +12,7 @@ namespace Facepunch.Steamworks
public class ServerQuery
{
internal Server server;
internal static byte[] buffer = new byte[16*1024];
internal static byte[] buffer = new byte[64*1024];
internal ServerQuery( Server s )
{