diff options
| author | Michael VanOverbeek <[email protected]> | 2017-03-06 21:35:26 +0000 |
|---|---|---|
| committer | Michael VanOverbeek <[email protected]> | 2017-03-06 21:35:26 +0000 |
| commit | 220a1bccd60cbf6848e68fe9611df530d379189f (patch) | |
| tree | 9fdfcfd5f910edd05d0b133cdd665a073ce989d6 | |
| parent | 078c729d0918b923a4b4076bd927b53cd1bcc9d7 (diff) | |
| download | shiftos_thereturn-220a1bccd60cbf6848e68fe9611df530d379189f.tar.gz shiftos_thereturn-220a1bccd60cbf6848e68fe9611df530d379189f.tar.bz2 shiftos_thereturn-220a1bccd60cbf6848e68fe9611df530d379189f.zip | |
oops
You know... when implementing a new MUD-side function... it's helpful to
actually ENABLE it in the startup routine...
| -rw-r--r-- | ShiftOS.Server/Program.cs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ShiftOS.Server/Program.cs b/ShiftOS.Server/Program.cs index 3ef9715..7e5a517 100644 --- a/ShiftOS.Server/Program.cs +++ b/ShiftOS.Server/Program.cs @@ -167,6 +167,8 @@ namespace ShiftOS.Server var task = ChatBackend.StartDiscordBots(); task.Wait(); + RandomUserGenerator.StartThread(); + while (server.IsOnline) { Console.Write("> "); |
