Skip to content

Commit

Permalink
Fix translations path for the meta cache
Browse files Browse the repository at this point in the history
  • Loading branch information
peterix committed Sep 30, 2014
1 parent bbdf5c1 commit 43b9706
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion MultiMC.cpp
Expand Up @@ -543,7 +543,7 @@ void MultiMC::initHttpMetaCache()
m_metacache->addBase("liteloader", QDir("mods/liteloader").absolutePath());
m_metacache->addBase("skins", QDir("accounts/skins").absolutePath());
m_metacache->addBase("root", QDir(root()).absolutePath());
m_metacache->addBase("translations", QDir("translations").absolutePath());
m_metacache->addBase("translations", QDir(staticData() + "/translations").absolutePath());
m_metacache->Load();
}

Expand Down

0 comments on commit 43b9706

Please sign in to comment.