Skip to content
This repository was archived by the owner on Oct 16, 2020. It is now read-only.

Commit eaffb79

Browse files
committed
Fix issue when parsing list of conditional DLC where not-installed custom DLC items would not be added ot list, potentially making it always true condition
1 parent 6dd8caa commit eaffb79

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

src/com/me3tweaks/modmanager/ModManager.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,9 @@
3737

3838
public class ModManager {
3939
public static boolean IS_DEBUG = false;
40-
public static final String VERSION = "5.1.8";
41-
public static long BUILD_NUMBER = 96L;
42-
public static final String BUILD_DATE = "11/03/2019";
40+
public static final String VERSION = "5.1.9";
41+
public static long BUILD_NUMBER = 97L;
42+
public static final String BUILD_DATE = "11/26/2019";
4343
public static final String SETTINGS_FILENAME = "me3cmm.ini";
4444
public static DebugLogger debugLogger;
4545
public static boolean logging = false;

src/com/me3tweaks/modmanager/objects/Mod.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2044,6 +2044,8 @@ public boolean addCustomDLCAlternates(String biogamedir) {
20442044
.writeError("[alt dlc application] Alt dlc specifies non-existent Custom DLC/Mod Manager Header, this shouldn't really be possible. "
20452045
+ conditionaldlc);
20462046
}
2047+
} else {
2048+
remappedHeaders.add(dlcpart.toUpperCase());
20472049
}
20482050
} else {
20492051
remappedHeaders.add(dlcpart.toUpperCase());

0 commit comments

Comments
 (0)