aboutsummaryrefslogtreecommitdiff
path: root/libraries/launcher/org
diff options
context:
space:
mode:
authoricelimetea <fr3shtea@outlook.com>2022-05-05 07:16:16 +0100
committericelimetea <fr3shtea@outlook.com>2022-05-05 07:16:16 +0100
commit6bffa060637e3620739344925a4681ec494a725b (patch)
tree79cbeee1f345100516478c67052aa7f45057e2fc /libraries/launcher/org
parentdcc41ef885cbb2a823313a95e48d069c63589a42 (diff)
downloadPrismLauncher-6bffa060637e3620739344925a4681ec494a725b.tar.gz
PrismLauncher-6bffa060637e3620739344925a4681ec494a725b.tar.bz2
PrismLauncher-6bffa060637e3620739344925a4681ec494a725b.zip
Fix typo
Diffstat (limited to 'libraries/launcher/org')
-rw-r--r--libraries/launcher/org/multimc/applet/LegacyFrame.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/libraries/launcher/org/multimc/applet/LegacyFrame.java b/libraries/launcher/org/multimc/applet/LegacyFrame.java
index e3bd5047..0283f92c 100644
--- a/libraries/launcher/org/multimc/applet/LegacyFrame.java
+++ b/libraries/launcher/org/multimc/applet/LegacyFrame.java
@@ -85,12 +85,13 @@ public final class LegacyFrame extends Frame {
LOGGER.warning("Mpticket file is corrupted!");
} else {
+ // Assumes parameters are valid and in the correct order
appletWrap.setParameter("server", lines.get(0));
appletWrap.setParameter("port", lines.get(1));
appletWrap.setParameter("mppass", lines.get(2));
}
} catch (IOException e) {
- LOGGER.log(Level.WARNING, "Unable to red mpticket file!", e);
+ LOGGER.log(Level.WARNING, "Unable to read mpticket file!", e);
}
}