aboutsummaryrefslogtreecommitdiff
path: root/launcher/ui/pages/global/MinecraftPage.cpp
diff options
context:
space:
mode:
authorTheKodeToad <TheKodeToad@proton.me>2023-08-20 12:43:49 +0100
committerGitHub <noreply@github.com>2023-08-20 12:43:49 +0100
commit0aaea9bf5dbc49a20ad56d7856807d1bb7325411 (patch)
tree9b4514cc65502b24549517f9f3b1852001ac9ac3 /launcher/ui/pages/global/MinecraftPage.cpp
parent232bb568da84274046d5ff6f7ee8afb91749e4c7 (diff)
parent5b4dcae7d948cd3516bc691f6e696f0951041721 (diff)
downloadPrismLauncher-0aaea9bf5dbc49a20ad56d7856807d1bb7325411.tar.gz
PrismLauncher-0aaea9bf5dbc49a20ad56d7856807d1bb7325411.tar.bz2
PrismLauncher-0aaea9bf5dbc49a20ad56d7856807d1bb7325411.zip
Merge pull request #1547 from Scrumplex/revert-quilt-beacon
Remove Quilt Beacon toggle
Diffstat (limited to 'launcher/ui/pages/global/MinecraftPage.cpp')
-rw-r--r--launcher/ui/pages/global/MinecraftPage.cpp6
1 files changed, 0 insertions, 6 deletions
diff --git a/launcher/ui/pages/global/MinecraftPage.cpp b/launcher/ui/pages/global/MinecraftPage.cpp
index 1c774721..f0d50b63 100644
--- a/launcher/ui/pages/global/MinecraftPage.cpp
+++ b/launcher/ui/pages/global/MinecraftPage.cpp
@@ -2,7 +2,6 @@
/*
* Prism Launcher - Minecraft Launcher
* Copyright (c) 2022 Jamie Mansfield <jmansfield@cadixdev.org>
- * Copyright (C) 2023 seth <getchoo at tuta dot io>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@@ -119,9 +118,6 @@ void MinecraftPage::applySettings()
// Miscellaneous
s->set("CloseAfterLaunch", ui->closeAfterLaunchCheck->isChecked());
s->set("QuitAfterGameStop", ui->quitAfterGameStopCheck->isChecked());
-
- // Mod loader settings
- s->set("DisableQuiltBeacon", ui->disableQuiltBeaconCheckBox->isChecked());
}
void MinecraftPage::loadSettings()
@@ -172,8 +168,6 @@ void MinecraftPage::loadSettings()
ui->closeAfterLaunchCheck->setChecked(s->get("CloseAfterLaunch").toBool());
ui->quitAfterGameStopCheck->setChecked(s->get("QuitAfterGameStop").toBool());
-
- ui->disableQuiltBeaconCheckBox->setChecked(s->get("DisableQuiltBeacon").toBool());
}
void MinecraftPage::retranslate()