/// @private
        void ILoadable.OnPostModsLoad()
        {
            this.GithubMods = new Dictionary <string, Mod>();

            foreach (Mod mod in ModLoader.Mods)
            {
                if (ModMetaDataLibraries.DetectGithub(mod))
                {
                    this.GithubMods[mod.Name] = mod;
                }
            }
        }