Do not show core mods page for minecraft newer than 1.5.2.

This commit is contained in:
Petr Mrázek
2014-07-10 00:47:08 +02:00
parent 08fbfa7434
commit ff06489fed
3 changed files with 40 additions and 4 deletions

View File

@ -63,10 +63,10 @@ QList<BasePage *> OneSixInstance::getPages()
{
QList<BasePage *> values;
values.append(new VersionPage(this));
values.append(new ModFolderPage(this, loaderModList(), "mods", "plugin-blue", tr("Loader mods"),
"Loader-mods"));
values.append(new ModFolderPage(this, coreModList(), "coremods", "plugin-green", tr("Core mods"),
"Core-mods"));
values.append(new ModFolderPage(this, loaderModList(), "mods", "plugin-blue",
tr("Loader mods"), "Loader-mods"));
values.append(new CoreModFolderPage(this, coreModList(), "coremods", "plugin-green",
tr("Core mods"), "Core-mods"));
values.append(new ResourcePackPage(this));
values.append(new TexturePackPage(this));
values.append(new NotesPage(this));