diff options
author | swirl <swurl@swurl.xyz> | 2022-01-10 12:46:43 -0500 |
---|---|---|
committer | swirl <swurl@swurl.xyz> | 2022-01-10 12:47:35 -0500 |
commit | 1d8196e11a3ff901d5e65d9f6dc4d2ea98df3cc8 (patch) | |
tree | 0004d3815aabd9198b0d9f87349a202243ce85bf /launcher/launch | |
parent | c7f6f94930bb3bd13a2e77a959291a4d755a793f (diff) | |
download | PrismLauncher-1d8196e11a3ff901d5e65d9f6dc4d2ea98df3cc8.tar.gz PrismLauncher-1d8196e11a3ff901d5e65d9f6dc4d2ea98df3cc8.tar.bz2 PrismLauncher-1d8196e11a3ff901d5e65d9f6dc4d2ea98df3cc8.zip |
More rebranding
Closes: #39
Mostly done with rebranding now. We just need to translate some services
to PolyMC.
Diffstat (limited to 'launcher/launch')
-rw-r--r-- | launcher/launch/LaunchTask.cpp | 3 | ||||
-rw-r--r-- | launcher/launch/steps/CheckJava.cpp | 4 |
2 files changed, 3 insertions, 4 deletions
diff --git a/launcher/launch/LaunchTask.cpp b/launcher/launch/LaunchTask.cpp index e6f6bbac..231a6398 100644 --- a/launcher/launch/LaunchTask.cpp +++ b/launcher/launch/LaunchTask.cpp @@ -212,7 +212,7 @@ shared_qobject_ptr<LogModel> LaunchTask::getLogModel() m_logModel->setMaxLines(m_instance->getConsoleMaxLines()); m_logModel->setStopOnOverflow(m_instance->shouldStopOnConsoleOverflow()); // FIXME: should this really be here? - m_logModel->setOverflowMessage(tr("MultiMC stopped watching the game log because the log length surpassed %1 lines.\n" + m_logModel->setOverflowMessage(tr("PolyMC stopped watching the game log because the log length surpassed %1 lines.\n" "You may have to fix your mods because the game is still logging to files and" " likely wasting harddrive space at an alarming rate!").arg(m_logModel->getMaxLines())); } @@ -277,4 +277,3 @@ QString LaunchTask::substituteVariables(const QString &cmd) const } return out; } - diff --git a/launcher/launch/steps/CheckJava.cpp b/launcher/launch/steps/CheckJava.cpp index fb338231..d3f2148c 100644 --- a/launcher/launch/steps/CheckJava.cpp +++ b/launcher/launch/steps/CheckJava.cpp @@ -87,14 +87,14 @@ void CheckJava::checkJavaFinished(JavaCheckResult result) // Error message displayed if java can't start emit logLine(QString("Could not start java:"), MessageLevel::Error); emit logLines(result.errorLog.split('\n'), MessageLevel::Error); - emit logLine("\nCheck your MultiMC Java settings.", MessageLevel::Launcher); + emit logLine("\nCheck your PolyMC Java settings.", MessageLevel::Launcher); printSystemInfo(false, false); emitFailed(QString("Could not start java!")); return; } case JavaCheckResult::Validity::ReturnedInvalidData: { - emit logLine(QString("Java checker returned some invalid data MultiMC doesn't understand:"), MessageLevel::Error); + emit logLine(QString("Java checker returned some invalid data PolyMC doesn't understand:"), MessageLevel::Error); emit logLines(result.outLog.split('\n'), MessageLevel::Warning); emit logLine("\nMinecraft might not start properly.", MessageLevel::Launcher); printSystemInfo(false, false); |