Fix mod protection message

This commit is contained in:
Tixx 2025-05-27 22:12:07 +02:00
parent 187ef3b24f
commit b1ebcfc18d
No known key found for this signature in database
GPG Key ID: EC6E7A2BAABF0B8C

View File

@ -554,7 +554,7 @@ void NewSyncResources(SOCKET Sock, const std::string& Mods, const std::vector<Mo
continue; continue;
} }
if (ModInfoIter->Protected && false) { if (ModInfoIter->Protected) {
std::string message = "Mod '" + ModInfoIter->FileName + "' is protected and therefore must be placed in the Resources/Caching folder manually here: " + fs::absolute(CachingDirectory).string(); std::string message = "Mod '" + ModInfoIter->FileName + "' is protected and therefore must be placed in the Resources/Caching folder manually here: " + fs::absolute(CachingDirectory).string();
error(message); error(message);