diff options
| author | Michael VanOverbeek <[email protected]> | 2017-04-07 16:57:05 +0000 |
|---|---|---|
| committer | Michael VanOverbeek <[email protected]> | 2017-04-07 16:57:05 +0000 |
| commit | 9aa1becb306f5acf139bf0dc864304ebff8ffabf (patch) | |
| tree | 2409cb15f3b7181895d5b16183af758d22735ca0 /ShiftOS.Server/Program.cs | |
| parent | b9c46d801c428b76777d0159f50a4e2bcba60ee4 (diff) | |
| download | shiftos_thereturn-9aa1becb306f5acf139bf0dc864304ebff8ffabf.tar.gz shiftos_thereturn-9aa1becb306f5acf139bf0dc864304ebff8ffabf.tar.bz2 shiftos_thereturn-9aa1becb306f5acf139bf0dc864304ebff8ffabf.zip | |
MUD updates long-over-due.
Diffstat (limited to 'ShiftOS.Server/Program.cs')
| -rw-r--r-- | ShiftOS.Server/Program.cs | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/ShiftOS.Server/Program.cs b/ShiftOS.Server/Program.cs index 9093c35..3f64054 100644 --- a/ShiftOS.Server/Program.cs +++ b/ShiftOS.Server/Program.cs @@ -121,8 +121,15 @@ namespace ShiftOS.Server server.OnClientAccepted += (o, a) => { Console.WriteLine("Client connected."); - server.DispatchTo(a.Guid, new NetObject("welcome", new ServerMessage { Name = "Welcome", Contents = a.Guid.ToString(), GUID = "Server" })); - }; + try + { + server.DispatchTo(a.Guid, new NetObject("welcome", new ServerMessage { Name = "Welcome", Contents = a.Guid.ToString(), GUID = "Server" })); + } + catch + { + Console.WriteLine("Oh, you don't have time to finish the handshake? Fine. Get off."); + } + }; server.OnClientDisconnected += (o, a) => { @@ -185,8 +192,11 @@ namespace ShiftOS.Server Console.WriteLine("Server stopping."); }; + + /* var task = ChatBackend.StartDiscordBots(); task.Wait(); + */ RandomUserGenerator.StartThread(); |
