Revert "[Backport release-8.x] Use minecraft instead of .minecraft for better accessibility"

This commit is contained in:
TheKodeToad
2024-02-04 16:08:16 +00:00
committed by GitHub
parent cf6ffc3954
commit 25ba275230
9 changed files with 16 additions and 16 deletions

View File

@ -37,7 +37,7 @@ void PackInstallTask::executeTask()
progress(1, 2);
m_copyFuture = QtConcurrent::run(QThreadPool::globalInstance(), [this] {
FS::copy folderCopy(m_pack.path, FS::PathCombine(m_stagingPath, "minecraft"));
FS::copy folderCopy(m_pack.path, FS::PathCombine(m_stagingPath, ".minecraft"));
folderCopy.followSymlinks(true);
return folderCopy();
});