fixup: Use 1.10 block dumps
This commit is contained in:
parent
0deab72c68
commit
47bc3c2f0c
@ -259,7 +259,7 @@ class MCInstallGroup(QtCore.QObject):
|
||||
|
||||
def matchVersion(version):
|
||||
major, minor, rev = splitVersion(version)
|
||||
if (major, minor) >= (1, 9):
|
||||
if (major, minor) >= self._requiredMajorMinor:
|
||||
if rev == "":
|
||||
return version
|
||||
try:
|
||||
@ -408,9 +408,9 @@ class MCInstallGroup(QtCore.QObject):
|
||||
|
||||
|
||||
def getDefaultResourceLoader(self):
|
||||
v18 = self.findVersionWithAssets()
|
||||
loader = ResourceLoader(v18)
|
||||
loader.addZipFile(v18)
|
||||
assetsVersion = self.findVersionWithAssets()
|
||||
loader = ResourceLoader(assetsVersion)
|
||||
loader.addZipFile(assetsVersion)
|
||||
return loader
|
||||
|
||||
class MCInstall(object):
|
||||
|
Reference in New Issue
Block a user