summaryrefslogtreecommitdiff
path: root/src/installationmanager.cpp
diff options
context:
space:
mode:
authorTannin <devnull@localhost>2013-05-23 20:03:35 +0200
committerTannin <devnull@localhost>2013-05-23 20:03:35 +0200
commitdaf8bab1367334bb7f2332d4256f31c9db5ecec8 (patch)
tree5b687b2d57f03fea7c8158c80fcaf22cc88fcb73 /src/installationmanager.cpp
parentf0ba6ce95c1f30524453ce996fa536a888f018da (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.cpp4
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);
}
}
}