Skip to content

Commit 77fc069

Browse files
committed
Removed "removeEslFlag" check
Wrye Bash cannot check for ESL qualifications in the first place so don't check for this, for now. ESL check needs updated if possible first.
1 parent 64d164a commit 77fc069

1 file changed

Lines changed: 0 additions & 12 deletions

File tree

Mopy/bash/bosh/mods_metadata.py

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -373,7 +373,6 @@ def checkMods(self, showModList=False, showRuleSets=False, showNotes=False,
373373
merged_ = modInfos.merged
374374
imported_ = modInfos.imported
375375
activeMerged = active | merged_
376-
removeEslFlag = set()
377376
warning = u'=== <font color=red>'+_(u'WARNING:')+u'</font> '
378377
#--Header
379378
with sio() as out:
@@ -390,12 +389,6 @@ def checkMods(self, showModList=False, showRuleSets=False, showNotes=False,
390389
shouldMerge = modInfos.mergeable
391390
else:
392391
shouldMerge = active & modInfos.mergeable
393-
if bush.game.check_esl:
394-
for m, modinf in modInfos.items():
395-
if not modinf.is_esl():
396-
continue # we check .esl extension and ESL flagged mods
397-
if not is_esl_capable(modinf, modInfos, reasons=None):
398-
removeEslFlag.add(m)
399392
shouldDeactivateA, shouldDeactivateB = [], []
400393
for x in active:
401394
tags = modInfos[x].getBashTags()
@@ -450,11 +443,6 @@ def checkMods(self, showModList=False, showRuleSets=False, showNotes=False,
450443
u'the bashed patch.'))
451444
for mod in sorted(shouldMerge):
452445
log(u'* __'+mod.s+u'__')
453-
if removeEslFlag:
454-
log.setHeader(u'=== ' + _(u'Remove ESL Flag'))
455-
log(_(u'Following mods have an ESL flag, but may not qualify. Check with xEdit.'))
456-
for mod in sorted(removeEslFlag):
457-
log(u'* __' + mod.s + u'__')
458446
if shouldDeactivateB:
459447
log.setHeader(u'=== '+_(u'NoMerge Tagged Mods'))
460448
log(_(u'Following mods are tagged NoMerge and should be '

0 commit comments

Comments
 (0)