🐛 channels more then capacity

This commit is contained in:
2023-10-11 21:21:58 +03:00
parent 745d196a8b
commit 3da57e086e
+2 -2
View File
@@ -19,6 +19,6 @@ namespace Ragon.Server.IO;
public enum NetworkChannel
{
RELIABLE = 1,
UNRELIABLE = 2,
RELIABLE = 0,
UNRELIABLE = 1,
}