1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-04-13 11:40:38 +02:00

Merge pull request #1159 from Nordsoft91/fix-mods-update

Fix mods updating
This commit is contained in:
Andrii Danylchenko 2022-11-25 10:02:48 +02:00 committed by GitHub
commit 23c5aa95c6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -160,8 +160,6 @@ bool CModManager::canUninstallMod(QString modname)
if(!mod.isInstalled())
return addError(modname, "Mod is not installed");
if(mod.isEnabled())
return addError(modname, "Mod must be disabled first");
return true;
}