withSIX.Play.Core.Games.Legacy.CalculatedGameSettings.GetServerMods C# (CSharp) Method

GetServerMods() private method

private GetServerMods ( AdvancedCollection customCollection, Server server ) : IEnumerable
customCollection withSIX.Play.Core.Games.Legacy.Mods.AdvancedCollection
server Server
return IEnumerable
        IEnumerable<Mod> GetServerMods(AdvancedCollection customCollection, Server server) {
            if (!server.Mods.Any())
                return Enumerable.Empty<Mod>();
            return customCollection != null
                ? GetCustomRepoServerMods(server, customCollection)
                : GetServerMods(server);
        }

Same methods

CalculatedGameSettings::GetServerMods ( Server server ) : IEnumerable