NOISSUE Corrected the fix for Classic saving, fixes Indev compatibility

This commit is contained in:
Moresteck 2020-11-12 14:58:12 +00:00
parent eb3e6e4c6a
commit 49126fa8e2
No known key found for this signature in database
GPG Key ID: 4439078331B28FB2

View File

@ -143,7 +143,11 @@ public class Launcher extends Applet implements AppletStub
public URL getDocumentBase()
{
try {
return new URL("http", "www.minecraft.net", 80, "/game/", null);
// Special case only for Classic versions
if (wrappedApplet.getClass().getCanonicalName().startsWith("com.mojang")) {
return new URL("http", "www.minecraft.net", 80, "/game/", null);
}
return new URL("http://www.minecraft.net/game/");
} catch (MalformedURLException e) {
e.printStackTrace();
}