diff options
author | TheKodeToad <TheKodeToad@proton.me> | 2022-10-24 18:21:26 +0100 |
---|---|---|
committer | TheKodeToad <TheKodeToad@proton.me> | 2022-11-08 16:24:55 +0000 |
commit | e68dcea6bcb5830659d17db40fc9a83a4eca9cc0 (patch) | |
tree | 9684169f7752919d05a70445abd1ec0b4e9dde7a /libraries/launcher/org/prismlauncher/applet/LegacyFrame.java | |
parent | e4e0c27e1c8317b7287a84dc24b274674c359615 (diff) | |
download | PrismLauncher-e68dcea6bcb5830659d17db40fc9a83a4eca9cc0.tar.gz PrismLauncher-e68dcea6bcb5830659d17db40fc9a83a4eca9cc0.tar.bz2 PrismLauncher-e68dcea6bcb5830659d17db40fc9a83a4eca9cc0.zip |
Various tweaks to the Java component of the launcher
Signed-off-by: TheKodeToad <TheKodeToad@proton.me>
Diffstat (limited to 'libraries/launcher/org/prismlauncher/applet/LegacyFrame.java')
-rw-r--r-- | libraries/launcher/org/prismlauncher/applet/LegacyFrame.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libraries/launcher/org/prismlauncher/applet/LegacyFrame.java b/libraries/launcher/org/prismlauncher/applet/LegacyFrame.java index 4413efa8..f3359fca 100644 --- a/libraries/launcher/org/prismlauncher/applet/LegacyFrame.java +++ b/libraries/launcher/org/prismlauncher/applet/LegacyFrame.java @@ -34,6 +34,7 @@ import java.util.List; import java.util.logging.Level; import java.util.logging.Logger; +@SuppressWarnings("removal") public final class LegacyFrame extends Frame { private static final Logger LOGGER = Logger.getLogger("LegacyFrame"); @@ -105,7 +106,7 @@ public final class LegacyFrame extends Frame { appletWrap.setParameter("username", user); appletWrap.setParameter("sessionid", session); - appletWrap.setParameter("stand-alone", "true"); // Show the quit button. + appletWrap.setParameter("stand-alone", "true"); // Show the quit button. TODO: why won't this work? appletWrap.setParameter("haspaid", "true"); // Some old versions need this for world saves to work. appletWrap.setParameter("demo", isDemo ? "true" : "false"); appletWrap.setParameter("fullscreen", "false"); |