This commit is contained in:
parent
853b2baaf6
commit
a094b9fbb6
2 changed files with 6 additions and 4 deletions
|
@ -1,6 +1,7 @@
|
|||
package de.com.baseband.client.util.interact;
|
||||
|
||||
import com.mojang.realmsclient.gui.ChatFormatting;
|
||||
import de.com.baseband.client.BaseBand;
|
||||
import de.com.baseband.client.Setup;
|
||||
import net.minecraft.client.Minecraft;
|
||||
import net.minecraft.client.gui.GuiChat;
|
||||
|
@ -18,7 +19,7 @@ public class Chat {
|
|||
Minecraft.getMinecraft().player.sendMessage(new TextComponentString(ChatFormatting.LIGHT_PURPLE + Setup.get().Name.toLowerCase() + "~ " + ChatFormatting.RESET + s));
|
||||
}
|
||||
else {
|
||||
|
||||
BaseBand.LOGGER.info(s);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -15,19 +15,20 @@ import java.net.URL;
|
|||
|
||||
public class WebServiceClient2 extends Thread {
|
||||
// TODO make
|
||||
// -> https://downloads.baseband.com.de
|
||||
// -> https://download.baseband.com.de
|
||||
|
||||
BufferedReader connection;
|
||||
public Lock lock = new Lock();
|
||||
boolean outdated = false;
|
||||
|
||||
public WebServiceClient2() {
|
||||
try {
|
||||
connection = new BufferedReader(new InputStreamReader(new URL("https://downloads.baseband.com.de/listen").openStream()));
|
||||
lock.lock();
|
||||
try {
|
||||
connection = new BufferedReader(new InputStreamReader(new URL("https://download.baseband.com.de/listen").openStream()));
|
||||
} catch (MalformedURLException e) {
|
||||
throw new RuntimeException(e);
|
||||
} catch (IOException e) {
|
||||
e.printStackTrace();
|
||||
BaseBand.LOGGER.fatal("Cannot connect to WSC2.");
|
||||
BaseBand.shutdown();
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue