diff options
author | Sefa Eyeoglu <contact@scrumplex.net> | 2022-05-17 16:09:22 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-17 16:09:22 +0200 |
commit | cc13310083fe8d0c3bb423fa3e31db7b1f7b25e1 (patch) | |
tree | 19e4613e56c44f0b755a36435f44f3b1d7636058 /launcher/ui/dialogs/NewInstanceDialog.cpp | |
parent | 1012912272d14d8cc8eb1e009579a997b7a35b7f (diff) | |
parent | ddc3b5eb0bbd17edd60d96f5094d65dbdb922765 (diff) | |
download | PrismLauncher-cc13310083fe8d0c3bb423fa3e31db7b1f7b25e1.tar.gz PrismLauncher-cc13310083fe8d0c3bb423fa3e31db7b1f7b25e1.tar.bz2 PrismLauncher-cc13310083fe8d0c3bb423fa3e31db7b1f7b25e1.zip |
Merge pull request #565 from Scrumplex/modrinth-packs
Initial Modrinth modpack support
Diffstat (limited to 'launcher/ui/dialogs/NewInstanceDialog.cpp')
-rw-r--r-- | launcher/ui/dialogs/NewInstanceDialog.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/launcher/ui/dialogs/NewInstanceDialog.cpp b/launcher/ui/dialogs/NewInstanceDialog.cpp index b402839c..05ea091d 100644 --- a/launcher/ui/dialogs/NewInstanceDialog.cpp +++ b/launcher/ui/dialogs/NewInstanceDialog.cpp @@ -39,6 +39,7 @@ #include "ui/pages/modplatform/legacy_ftb/Page.h" #include "ui/pages/modplatform/flame/FlamePage.h" #include "ui/pages/modplatform/ImportPage.h" +#include "ui/pages/modplatform/modrinth/ModrinthPage.h" #include "ui/pages/modplatform/technic/TechnicPage.h" @@ -134,6 +135,7 @@ QList<BasePage *> NewInstanceDialog::getPages() flamePage, new FtbPage(this), new LegacyFTB::Page(this), + new ModrinthPage(this), technicPage }; } |