Advertisement
Guest User

Untitled

a guest
Jun 6th, 2016
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. if (getOwner().getRelationships() == null) {
  2. getOwner().getCompletionCallback().addListener(new Runnable() {
  3.  
  4. @Override
  5. public void run() {
  6. Minecraft.getMinecraft().addScheduledTask(new Runnable() {
  7.  
  8. @Override
  9. public void run() {
  10. download(type, position);
  11. }
  12. });
  13. }
  14. }, MoreExecutors.sameThreadExecutor());
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement