[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("y", "" + pos.getY());
get.setHeader("z", "" + pos.getZ()); get.setHeader("z", "" + pos.getZ());
try new Thread(() ->
{ {
http.execute(get); try
} {
catch (IOException e) http.execute(get);
{ }
e.printStackTrace(); catch (IOException e)
} {
e.printStackTrace();
}
}).start();
} }
} }