We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 874c314 commit 8c9c101Copy full SHA for 8c9c101
PCL2.Neo/Models/Minecraft/Java/JavaData.cs
@@ -136,6 +136,12 @@ private static async Task<JavaInfo> JavaInfoInitAsync(string directoryPath)
136
{
137
var executableArchitecture = ArchitectureUtils.GetExecutableArchitecture(javaExe);
138
139
+ if (executableArchitecture == ArchitectureUtils.Architecture.FatFile)
140
+ {
141
+ info.Compability = JavaCompability.Yes;
142
+ info.IsFatFile = true;
143
+ }
144
+
145
if (executableArchitecture.ToString() == RuntimeInformation.OSArchitecture.ToString())
146
147
info.Compability = JavaCompability.Yes;
0 commit comments