We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4dc4236 commit 4c9f3cfCopy full SHA for 4c9f3cf
1 file changed
KSPCommunityFixes/KSPCommunityFixes.cs
@@ -72,7 +72,7 @@ public static bool cleanedDll
72
if (File.Exists(dllPath))
73
{
74
Byte[] data = File.ReadAllBytes(dllPath);
75
- if ((data.Length < 10485760) && (KSPCommunityFixes.KspVersion >= new Version(1, 12, 0)))
+ if ((data.Length < 10000000) && (KSPCommunityFixes.KspVersion >= new Version(1, 12, 0)))
76
77
return true; //certainly a home-cleaned dll, no official 1.12.x build of Assembly-CSharp is less than 10MBs.
78
}
0 commit comments