Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public NBTTagCompound readNetworksFromTag(NBTTagCompound tag) {
- if (tag.hasKey("networkList")) {
- NBTTagList tagList = tag.getTagList("networkList", Constants.NBT.TAG_COMPOUND);
- List<NBTTagCompound> tagCompounds;
- try {
- tagCompounds = (List<NBTTagCompound>) ManaCraftReflection.getTagList(tagList);
- } catch (Throwable t) { throw Throwables.propagate(t); }
- }
- return tag;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement