diff options
Diffstat (limited to 'vendor/github.com/Philipp15b/go-steam/client.go')
-rw-r--r-- | vendor/github.com/Philipp15b/go-steam/client.go | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/vendor/github.com/Philipp15b/go-steam/client.go b/vendor/github.com/Philipp15b/go-steam/client.go index 667ad354..b39b7b0c 100644 --- a/vendor/github.com/Philipp15b/go-steam/client.go +++ b/vendor/github.com/Philipp15b/go-steam/client.go @@ -133,11 +133,17 @@ func (c *Client) Connected() bool { // If you want to connect to a specific server, use `ConnectTo`. func (c *Client) Connect() *netutil.PortAddr { var server *netutil.PortAddr + + // try to initialize the directory cache + if !steamDirectoryCache.IsInitialized() { + _ = steamDirectoryCache.Initialize() + } if steamDirectoryCache.IsInitialized() { server = steamDirectoryCache.GetRandomCM() } else { server = GetRandomCM() } + c.ConnectTo(server) return server } |