Skip to content

Commit 4c9f3cf

Browse files
committed
Lower heuristics size.
1 parent 4dc4236 commit 4c9f3cf

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

KSPCommunityFixes/KSPCommunityFixes.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ public static bool cleanedDll
7272
if (File.Exists(dllPath))
7373
{
7474
Byte[] data = File.ReadAllBytes(dllPath);
75-
if ((data.Length < 10485760) && (KSPCommunityFixes.KspVersion >= new Version(1, 12, 0)))
75+
if ((data.Length < 10000000) && (KSPCommunityFixes.KspVersion >= new Version(1, 12, 0)))
7676
{
7777
return true; //certainly a home-cleaned dll, no official 1.12.x build of Assembly-CSharp is less than 10MBs.
7878
}

0 commit comments

Comments
 (0)