diff options
author | Petr Mrázek <peterix@gmail.com> | 2021-10-18 00:47:02 +0200 |
---|---|---|
committer | Petr Mrázek <peterix@gmail.com> | 2021-10-21 00:47:53 +0200 |
commit | 5b3dffce62f7e4c00436adeca33c5f2fc4a21db4 (patch) | |
tree | 01a0eb2d994a9b0622697a6dbb124966692e692a /libraries/launcher | |
parent | 297d4b4196c9bd1d9c4dd422dd88aaec620038d6 (diff) | |
download | PrismLauncher-5b3dffce62f7e4c00436adeca33c5f2fc4a21db4.tar.gz PrismLauncher-5b3dffce62f7e4c00436adeca33c5f2fc4a21db4.tar.bz2 PrismLauncher-5b3dffce62f7e4c00436adeca33c5f2fc4a21db4.zip |
NOISSUE continue debranding...
Diffstat (limited to 'libraries/launcher')
-rw-r--r-- | libraries/launcher/org/multimc/EntryPoint.java | 2 | ||||
-rw-r--r-- | libraries/launcher/org/multimc/Utils.java | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/libraries/launcher/org/multimc/EntryPoint.java b/libraries/launcher/org/multimc/EntryPoint.java index d47a9b18..0f904f5f 100644 --- a/libraries/launcher/org/multimc/EntryPoint.java +++ b/libraries/launcher/org/multimc/EntryPoint.java @@ -135,7 +135,7 @@ public class EntryPoint } if(isAborted) { - System.err.println("Launch aborted by MultiMC."); + System.err.println("Launch aborted by the launcher."); return 1; } if(m_launcher != null) diff --git a/libraries/launcher/org/multimc/Utils.java b/libraries/launcher/org/multimc/Utils.java index fcf3edce..353af7d3 100644 --- a/libraries/launcher/org/multimc/Utils.java +++ b/libraries/launcher/org/multimc/Utils.java @@ -94,7 +94,7 @@ public class Utils } /** - * Log to the MultiMC console + * Log to the launcher console * * @param message A String containing the message * @param level A String containing the level name. See MinecraftLauncher::getLevel() @@ -108,7 +108,7 @@ public class Utils public static void log(String message) { - log(message, "MultiMC"); + log(message, "Launcher"); } public static void log() |