Changeset 610 for AE/installer2/src/net
- Timestamp:
- Jan 14, 2013, 7:02:30 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
AE/installer2/src/net/oni2/aeinstaller/backend/oni/Installer.java
r608 r610 183 183 copyBSL(m, false); 184 184 } 185 for (Mod m : modsToInclude.get(EBSLInstallType.ADDON)) { 186 copyBSL(m, true); 185 Vector<Mod> addons = modsToInclude.get(EBSLInstallType.ADDON); 186 for (int i = addons.size() - 1; i >= 0; i--) { 187 copyBSL(addons.get(i), true); 187 188 } 188 189 } … … 237 238 for (File fbsl : f.listFiles()) { 238 239 File targetFile = new File(targetPath, fbsl.getName()); 239 if ( !targetFile.exists()) {240 if (addon || !targetFile.exists()) { 240 241 try { 241 242 FileUtils.copyFile(fbsl, targetFile);
Note:
See TracChangeset
for help on using the changeset viewer.