From af0176b12a53209d45351aa0a6237d34f2e5cd77 Mon Sep 17 00:00:00 2001 From: TheKodeToad Date: Mon, 2 Jun 2025 09:34:23 +0100 Subject: [PATCH] Allow data packs on vanilla instances Signed-off-by: TheKodeToad --- launcher/ui/pages/instance/DataPackPage.cpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/launcher/ui/pages/instance/DataPackPage.cpp b/launcher/ui/pages/instance/DataPackPage.cpp index 2fc4ec31d..a56cc9b79 100644 --- a/launcher/ui/pages/instance/DataPackPage.cpp +++ b/launcher/ui/pages/instance/DataPackPage.cpp @@ -68,10 +68,6 @@ void DataPackPage::downloadDataPacks() return; // this is a null instance or a legacy instance auto profile = static_cast(m_instance)->getPackProfile(); - if (!profile->getModLoaders().has_value()) { - QMessageBox::critical(this, tr("Error"), tr("Please install a mod loader first!")); - return; - } m_downloadDialog = new ResourceDownload::DataPackDownloadDialog(this, m_model, m_instance); connect(this, &QObject::destroyed, m_downloadDialog, &QDialog::close);