mirror of
https://github.com/Sanae6/SmoOnlineServer.git
synced 2024-11-22 03:05:16 +00:00
Lower max client count to 8 due to client reasons
This commit is contained in:
parent
31e70a08b9
commit
f21bfb7425
1 changed files with 1 additions and 1 deletions
|
@ -7,7 +7,7 @@ namespace Shared;
|
||||||
|
|
||||||
public static class Constants {
|
public static class Constants {
|
||||||
public const int MaxPacketSize = 256;
|
public const int MaxPacketSize = 256;
|
||||||
public const int MaxClients = 10;
|
public const int MaxClients = 8;
|
||||||
public const int CostumeNameSize = 0x20;
|
public const int CostumeNameSize = 0x20;
|
||||||
|
|
||||||
// dictionary of packet types to packet
|
// dictionary of packet types to packet
|
||||||
|
|
Loading…
Reference in a new issue