297298299300301302303304305306307
public void handleListPacket(NBTTagCompound tag) { excludedCC.clear(); NBTTagList list = tag.getTagList("list", 3); while(list.tagCount() > 0) { NBTBase base = list.removeTag(0); excludedCC.add(((NBTTagInt)base).func_150287_d()); } } @Override
226227228229230231232233234235236
if (list.func_150303_d() == Constants.NBT.TAG_COMPOUND) { for (int i = list.tagCount() - 1; i >= 0; --i) { try { scanAndTranslateStacksToWorld(list.getCompoundTagAt(i)); } catch (MappingNotFoundException e) { list.removeTag(i); } } } } }