mirror of
https://github.com/dortania/OpenCore-Legacy-Patcher.git
synced 2026-06-19 13:50:00 +10:00
sys_patch_dict: Don’t instal Kepler’s patch in 13.0
This commit is contained in:
@@ -35,7 +35,9 @@ class check_binary_updates:
|
||||
self.remote_version_array.append(0)
|
||||
|
||||
for i in range(0, len(self.remote_version_array)):
|
||||
if self.remote_version_array[i] > self.binary_version_array[i]:
|
||||
if int(self.remote_version_array[i]) < int(self.binary_version_array[i]):
|
||||
break
|
||||
elif int(self.remote_version_array[i]) > int(self.binary_version_array[i]):
|
||||
return True
|
||||
|
||||
return False
|
||||
|
||||
Reference in New Issue
Block a user