Skip to content

Commit

Permalink
Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
HerpDerpinstine committed Apr 29, 2021
1 parent ed5d9ed commit d4cc8e6
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Main.cs
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,9 @@ private static bool ProcessAll()
List<UnityVersion> sortedversiontbl = new List<UnityVersion>();
foreach (UnityVersion version in UnityVersion.VersionTbl)
{
if (version.Version.StartsWith("2020") && !version.Version.StartsWith("2020.1"))
if ((version.Version.StartsWith("2020")
&& !version.Version.StartsWith("2020.1"))
|| version.Version.StartsWith("2021"))
{
Logger.Warning(version.Version + " is Incompatible with Current Extraction Method! Skipping...");
continue;
Expand Down

0 comments on commit d4cc8e6

Please sign in to comment.