Skip to content
This repository has been archived by the owner on Mar 2, 2024. It is now read-only.

Commit

Permalink
Instability fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Aceba1 committed Mar 12, 2020
1 parent ad88874 commit c9d8801
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
Binary file modified Executable/TerraTech Mod Manager.exe
Binary file not shown.
12 changes: 10 additions & 2 deletions TerraTech Mod Manager/NewMain.cs
Original file line number Diff line number Diff line change
Expand Up @@ -461,7 +461,11 @@ private void GetGitMods()
count = repos.Length;
foreach (var repo in repos)
{
updatecount += GithubModFromRepo(repo);
try
{
updatecount += GithubModFromRepo(repo);
}
catch { count--; }
}
ShowLoadMoreModsButton(Downloader.GetRepos.MorePagesAvailable, "Load more");
}
Expand All @@ -484,7 +488,11 @@ private void GetMoreGitMods()
count = repos.Length;
foreach (var repo in repos)
{
updatecount += GithubModFromRepo(repo);
try
{
updatecount += GithubModFromRepo(repo);
}
catch { count--; }
}
ShowLoadMoreModsButton(Downloader.GetRepos.MorePagesAvailable, "Load more");
}
Expand Down
2 changes: 1 addition & 1 deletion TerraTech Mod Manager/Start.cs
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ private string BootMain()
}
if (flag)
{
if (CheckPiracy())
if (false)
{
ConfigHandler.ResetConfig();
this.Close();
Expand Down

0 comments on commit c9d8801

Please sign in to comment.