From 0c5d12145207fbd0c849ad145150bce839717465 Mon Sep 17 00:00:00 2001 From: Leland Liu <14846866+lelandliu@users.noreply.github.com> Date: Fri, 14 Jun 2019 15:48:24 -0400 Subject: [PATCH] Fixed adding a disabled duplicate --- api/logic/minecraft/SimpleModList.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/api/logic/minecraft/SimpleModList.cpp b/api/logic/minecraft/SimpleModList.cpp index 59dd7cf3..f365438e 100644 --- a/api/logic/minecraft/SimpleModList.cpp +++ b/api/logic/minecraft/SimpleModList.cpp @@ -123,8 +123,8 @@ bool SimpleModList::installMod(const QString &filename) qDebug() << "Cannot recognize mod type of" << originalPath << ", ignoring it."; return false; } - auto newpath = FS::NormalizePath(FS::PathCombine(m_dir.path(), fileinfo.fileName())); + auto newpath = FS::NormalizePath(FS::PathCombine(m_dir.path(), fileinfo.fileName())); if(originalPath == newpath) { qDebug() << "Overwriting the mod (" << originalPath << ") with itself makes no sense..."; @@ -133,7 +133,7 @@ bool SimpleModList::installMod(const QString &filename) if (type == Mod::MOD_SINGLEFILE || type == Mod::MOD_ZIPFILE || type == Mod::MOD_LITEMOD) { - if(QFile::exists(newpath)) + if(QFile::exists(newpath) || QFile::exists(newpath.append(".disabled"))) { if(!QFile::remove(newpath)) {