Skip to content

Commit

Permalink
Change Socket start order
Browse files Browse the repository at this point in the history
  • Loading branch information
LtRipley36706 committed Jan 28, 2024
1 parent ba74410 commit 892a01e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Source/ACE.Server/Network/Managers/SocketManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,9 @@ public static void Initialize()

listeners[(i * 2) + 1] = new ConnectionListener(hosts[i], ConfigManager.Config.Server.Network.Port + 1);
log.Info($"Binding ConnectionListener to {hosts[i]}:{ConfigManager.Config.Server.Network.Port + 1}");

listeners[(i * 2) + 0].Start();

listeners[(i * 2) + 1].Start();
listeners[(i * 2) + 0].Start();
}
}

Expand Down

0 comments on commit 892a01e

Please sign in to comment.