Changeset 625 for AE/installer2/src/net/oni2/aeinstaller/backend/oni
- Timestamp:
- Jan 16, 2013, 5:12:24 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
AE/installer2/src/net/oni2/aeinstaller/backend/oni/Installer.java
r624 r625 244 244 combineBSLFolders(mods, listener); 245 245 246 if (Settings.getInstance().get("copyintro", false)) { 247 File src = new File(Paths.getVanillaGDF(), "intro.bik"); 248 if (src.exists()) { 249 try { 250 FileUtils.copyFileToDirectory(src, Paths.getEditionGDF()); 251 } catch (IOException e) { 252 e.printStackTrace(); 253 } 254 } 255 } 256 if (Settings.getInstance().get("copyoutro", true)) { 257 File src = new File(Paths.getVanillaGDF(), "outro.bik"); 258 if (src.exists()) { 259 try { 260 FileUtils.copyFileToDirectory(src, Paths.getEditionGDF()); 261 } catch (IOException e) { 262 e.printStackTrace(); 263 } 264 } 265 } 266 246 267 if (unlockLevels.size() > 0) { 247 268 File dat = new File(Paths.getEditionBasePath(), "persist.dat");
Note:
See TracChangeset
for help on using the changeset viewer.