var update

This commit is contained in:
Lucca Faria Ferri 2023-06-12 05:22:37 -03:00
parent 37932bd09b
commit 0508c19873

View File

@ -33,10 +33,10 @@ namespace DiIiS_NA.GameServer.ClientSystem
public override void Run()
{
int Port = 2001;
int port = 2001;
if (!Listen(Program.GameServerIp, Port)) return;
Logger.Info("Game Server Started - {0}:{1}...", Program.GameServerIp, Port);
if (!Listen(Program.GameServerIp, port)) return;
Logger.Info("Game Server Started - {0}:{1}...", Program.GameServerIp, port);
}
}
}