Multiple Game World Ports (#1206)

* configuration for the game world server to connect to clients across a number of socket-port connections following a simple numerical load balancing policy

* combining port management into the sector pane

* mostly spelling issues
This commit is contained in:
Fate-JH 2024-07-01 11:20:49 -04:00 committed by GitHub
parent 593caec8cf
commit 00a6f2abe1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
8 changed files with 378 additions and 180 deletions

View file

@ -104,6 +104,7 @@ case class LoginConfig(
case class WorldConfig(
port: Int,
ports: Seq[Int],
serverName: String,
serverType: ServerType
)