Skip to content

Commit a3139da

Browse files
committed
Fixed a bug that KeyError: 'maleLeftEye' in RacePatcher.
1 parent 1825329 commit a3139da

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Mopy/bash/bosh.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34292,7 +34292,7 @@ def buildPatch(self,log,progress):
3429234292
if race.maleRightEye.modPath != raceData['maleRightEye'].modPath:
3429334293
race.maleRightEye.modPath = raceData['maleRightEye'].modPath
3429434294
raceChanged = True
34295-
if 'femaleLeftEye' in raceData:
34295+
if 'maleLeftEye' in raceData:
3429634296
if not race.maleLeftEye: deprint(_('Very odd race %s found - no male left eye assigned') % (race.full))
3429734297
else:
3429834298
if race.maleLeftEye.modPath != raceData['maleLeftEye'].modPath:

0 commit comments

Comments
 (0)