Changeset 622 for AE/installer2/src/net/oni2/aeinstaller/backend
- Timestamp:
- Jan 16, 2013, 8:35:08 AM (13 years ago)
- Location:
- AE/installer2/src/net/oni2/aeinstaller/backend
- Files:
- 
      - 2 edited
 
 - 
          
  mods/Mod.java (modified) (1 diff)
- 
          
  unpack/Unpacker.java (modified) (1 diff)
 
Legend:
- Unmodified
- Added
- Removed
- 
      AE/installer2/src/net/oni2/aeinstaller/backend/mods/Mod.javar608 r622 55 55 Type t = ModManager.getInstance().getTypeByName(tt.getName()); 56 56 types.add(t); 57 if (!nm.isTool() && isValidOnPlatform())57 if (!nm.isTool() && !isMandatoryMod() && isValidOnPlatform()) 58 58 t.addEntry(this); 59 59 } 
- 
      AE/installer2/src/net/oni2/aeinstaller/backend/unpack/Unpacker.javar619 r622 119 119 120 120 zf = new ZipFile(zip); 121 122 if (target.exists()) 123 FileUtils.deleteDirectory(target); 121 124 target.mkdirs(); 125 122 126 for (Enumeration<? extends ZipEntry> e = zf.entries(); e 123 127 .hasMoreElements();) { 
  Note:
 See   TracChangeset
 for help on using the changeset viewer.
  
