decompile failed .Help me
Kotlin/Java
22
Posts
5
Posters
4.4k
Views
-
@SStars I'm sorry I didn't see your reply yesterday. After I checked it, I gave the method as follows:This should be fixable by changing this (in MinecraftDiscovery.py
if 'natives' in library: libFilename = "%s-%s-%s.jar"%(libSubdir, libVersion, substitueString(library['natives'][osKeyword]))
to this:
if 'natives' in library: if osKeyword not in library['natives']: continue libFilename = "%s-%s-%s.jar"%(libSubdir, libVersion, substitueString(library['natives'][osKeyword]))