Advertisement
Guest User

Untitled

a guest
Dec 13th, 2015
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.47 KB | None | 0 0
  1. public NBTTagCompound readNetworksFromTag(NBTTagCompound tag) {
  2.         if (tag.hasKey("networkList")) {
  3.             NBTTagList tagList = tag.getTagList("networkList", Constants.NBT.TAG_COMPOUND);
  4.  
  5.             List<NBTTagCompound> tagCompounds;
  6.             try {
  7.                 tagCompounds = (List<NBTTagCompound>) ManaCraftReflection.getTagList(tagList);
  8.             } catch (Throwable t) { throw Throwables.propagate(t); }
  9.  
  10.  
  11.         }
  12.  
  13.         return tag;
  14.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement