void StartGame()
    {
        state = ServerState.STARTING;
        Debug.Log("Server Starting Game");

        gr.Reset(true);
        gr.GenerateTerrainSeed();

        // Spawn player ships

        foreach (ConnectionObject co in GetPlayingConnectedClients())
        {
            gr.AddPlayer(co.serverPlayerID);
        }

        SendGameState();
    }