diff options
| author | Tannin <devnull@localhost> | 2013-05-23 20:03:35 +0200 |
|---|---|---|
| committer | Tannin <devnull@localhost> | 2013-05-23 20:03:35 +0200 |
| commit | daf8bab1367334bb7f2332d4256f31c9db5ecec8 (patch) | |
| tree | 5b687b2d57f03fea7c8158c80fcaf22cc88fcb73 /src/installationmanager.cpp | |
| parent | f0ba6ce95c1f30524453ce996fa536a888f018da (diff) | |
- bugfix: installation using custom installer always created mod directory
- batch installer now displays progress during mod installation
Diffstat (limited to 'src/installationmanager.cpp')
| -rw-r--r-- | src/installationmanager.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/installationmanager.cpp b/src/installationmanager.cpp index fee6361a..98a8a760 100644 --- a/src/installationmanager.cpp +++ b/src/installationmanager.cpp @@ -716,9 +716,7 @@ bool InstallationManager::install(const QString &fileName, GuessedValue<QString> ((filesTree == NULL) && installerCustom->isArchiveSupported(fileName)))) { std::set<QString> installerExtensions = installerCustom->supportedExtensions(); if (installerExtensions.find(fileInfo.suffix()) != installerExtensions.end()) { - if (testOverwrite(modName)) { - installResult = installerCustom->install(modName, fileName); - } + installResult = installerCustom->install(modName, fileName); } } } |
