From 4e175d0a81ed869fd2606b105111727251f336f6 Mon Sep 17 00:00:00 2001
From: oc <oc@oc>
Date: Fri, 7 Jan 2022 18:45:17 +0800
Subject: [PATCH] change max client 128 to 256

---
 server/src/network.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/server/src/network.h b/server/src/network.h
index 5dc2396..920d36f 100644
--- a/server/src/network.h
+++ b/server/src/network.h
@@ -10,7 +10,7 @@ enum
 	NET_CONNSTATE_ERROR=4,
 
 	NET_MAX_PACKETSIZE = 1400,
-	NET_MAX_CLIENTS = 128
+	NET_MAX_CLIENTS = 256
 };
 
 typedef int (*NETFUNC_DELCLIENT)(int ClientID, const char* pReason, void *pUser);