[O] Send remove block async

This commit is contained in:
Hykilpikonna
2020-02-19 21:28:19 -05:00
parent 386dbf84dd
commit c0e4061c45
@@ -179,13 +179,16 @@ public class SeedServerCache extends Behavior
get.setHeader("y", "" + pos.getY());
get.setHeader("z", "" + pos.getZ());
try
new Thread(() ->
{
http.execute(get);
}
catch (IOException e)
{
e.printStackTrace();
}
try
{
http.execute(get);
}
catch (IOException e)
{
e.printStackTrace();
}
}).start();
}
}