fixed client syntax

This commit is contained in:
LAX1DUDE 2022-07-27 21:42:58 -07:00
parent 0e78e1724d
commit 8d31000bd1
4 changed files with 7 additions and 3 deletions

View File

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<projectDescription> <projectDescription>
<name>eaglercraft-unified</name> <name>eaglercraft-sp</name>
<comment>Project eaglercraft-unified created by Buildship.</comment> <comment>Project eaglercraft-unified created by Buildship.</comment>
<projects> <projects>
</projects> </projects>

View File

@ -114,4 +114,9 @@ public class WorkerNetworkManager implements INetworkManager {
} }
} }
@Override
public String getServerURI() {
return "[integrated]";
}
} }

View File

@ -10,7 +10,6 @@ import net.lax1dude.eaglercraft.EaglerProfile;
import net.lax1dude.eaglercraft.GuiScreenEditProfile; import net.lax1dude.eaglercraft.GuiScreenEditProfile;
import net.lax1dude.eaglercraft.GuiScreenSingleplayerConnecting; import net.lax1dude.eaglercraft.GuiScreenSingleplayerConnecting;
import net.lax1dude.eaglercraft.GuiScreenSingleplayerLoading; import net.lax1dude.eaglercraft.GuiScreenSingleplayerLoading;
import net.lax1dude.eaglercraft.GuiScreenVoiceChannel;
import net.lax1dude.eaglercraft.IntegratedServer; import net.lax1dude.eaglercraft.IntegratedServer;
import net.lax1dude.eaglercraft.GuiScreenLicense; import net.lax1dude.eaglercraft.GuiScreenLicense;
import net.lax1dude.eaglercraft.GuiVoiceOverlay; import net.lax1dude.eaglercraft.GuiVoiceOverlay;
@ -82,6 +81,7 @@ import net.minecraft.src.TextureManager;
import net.minecraft.src.TexturePackList; import net.minecraft.src.TexturePackList;
import net.minecraft.src.Timer; import net.minecraft.src.Timer;
import net.minecraft.src.WorldClient; import net.minecraft.src.WorldClient;
import net.minecraft.src.WorldSettings;
public class Minecraft implements Runnable { public class Minecraft implements Runnable {

View File

@ -11,7 +11,6 @@ import net.lax1dude.eaglercraft.EaglercraftRandom;
import net.lax1dude.eaglercraft.GuiScreenEditProfile; import net.lax1dude.eaglercraft.GuiScreenEditProfile;
import net.lax1dude.eaglercraft.GuiScreenSingleplayerNotice; import net.lax1dude.eaglercraft.GuiScreenSingleplayerNotice;
import net.lax1dude.eaglercraft.GuiScreenSingleplayerLoading; import net.lax1dude.eaglercraft.GuiScreenSingleplayerLoading;
import net.lax1dude.eaglercraft.GuiScreenVoiceChannel;
import net.lax1dude.eaglercraft.IntegratedServer; import net.lax1dude.eaglercraft.IntegratedServer;
import net.lax1dude.eaglercraft.LocalStorageManager; import net.lax1dude.eaglercraft.LocalStorageManager;
import net.lax1dude.eaglercraft.TextureLocation; import net.lax1dude.eaglercraft.TextureLocation;