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):
|
def matchVersion(version):
|
||||||
major, minor, rev = splitVersion(version)
|
major, minor, rev = splitVersion(version)
|
||||||
if (major, minor) >= (1, 9):
|
if (major, minor) >= self._requiredMajorMinor:
|
||||||
if rev == "":
|
if rev == "":
|
||||||
return version
|
return version
|
||||||
try:
|
try:
|
||||||
@ -408,9 +408,9 @@ class MCInstallGroup(QtCore.QObject):
|
|||||||
|
|
||||||
|
|
||||||
def getDefaultResourceLoader(self):
|
def getDefaultResourceLoader(self):
|
||||||
v18 = self.findVersionWithAssets()
|
assetsVersion = self.findVersionWithAssets()
|
||||||
loader = ResourceLoader(v18)
|
loader = ResourceLoader(assetsVersion)
|
||||||
loader.addZipFile(v18)
|
loader.addZipFile(assetsVersion)
|
||||||
return loader
|
return loader
|
||||||
|
|
||||||
class MCInstall(object):
|
class MCInstall(object):
|
||||||
|
Reference in New Issue
Block a user