NBTTagCompound nbt = NBTUtility.getNBTTagCompound(itemStack);
list.add(LanguageUtility.getLocal("info.modeCustom.mode") + " " + (nbt.getBoolean(NBT_MODE) ? LanguageUtility.getLocal("info.modeCustom.substraction") : LanguageUtility.getLocal("info.modeCustom.additive")));
Vector3 point1 = new Vector3(nbt.getCompoundTag(NBT_POINT_1));
list.add(LanguageUtility.getLocal("info.modeCustom.point1") + " " + point1.intX() + ", " + point1.intY() + ", " + point1.intZ());
Vector3 point2 = new Vector3(nbt.getCompoundTag(NBT_POINT_2));
list.add(LanguageUtility.getLocal("info.modeCustom.point2") + " " + point2.intX() + ", " + point2.intY() + ", " + point2.intZ());
int modeID = nbt.getInteger(NBT_ID);