diff options
author | Petr Mrázek <peterix@gmail.com> | 2014-11-08 21:47:51 +0100 |
---|---|---|
committer | Petr Mrázek <peterix@gmail.com> | 2014-11-08 21:47:51 +0100 |
commit | 84723add8f11d49a3420591fc6bf821eb24ba6f6 (patch) | |
tree | c87f540432141ae26cfa7e691af156fbfed28ebf /logic | |
parent | 992ba0c3f8ae65d25503b74c62c3cdf4668635d3 (diff) | |
download | MultiMC-84723add8f11d49a3420591fc6bf821eb24ba6f6.tar MultiMC-84723add8f11d49a3420591fc6bf821eb24ba6f6.tar.gz MultiMC-84723add8f11d49a3420591fc6bf821eb24ba6f6.tar.lz MultiMC-84723add8f11d49a3420591fc6bf821eb24ba6f6.tar.xz MultiMC-84723add8f11d49a3420591fc6bf821eb24ba6f6.zip |
Fix #537
Core Mods help now goes to Loader Mods
Fixed Minecraft Log -> Minecraft Logs problem
Diffstat (limited to 'logic')
-rw-r--r-- | logic/LegacyInstance.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/logic/LegacyInstance.cpp b/logic/LegacyInstance.cpp index 95f70917..468110da 100644 --- a/logic/LegacyInstance.cpp +++ b/logic/LegacyInstance.cpp @@ -56,7 +56,7 @@ QList<BasePage *> LegacyInstance::getPages() values.append(new ModFolderPage(this, loaderModList(), "mods", "loadermods", tr("Loader mods"), "Loader-mods")); values.append(new ModFolderPage(this, coreModList(), "coremods", "coremods", tr("Core mods"), - "Core-mods")); + "Loader-mods")); values.append(new TexturePackPage(this)); values.append(new NotesPage(this)); values.append(new ScreenshotsPage(this)); |