Beispiel #1
0
  public Attributes(ItemStack stack) {
    // Create a CraftItemStack (under the hood)
    this.stack = NbtFactory.getCraftItemStack(stack);

    // Load NBT
    NbtCompound nbt = NbtFactory.fromItemTag(this.stack);
    this.attributes = nbt.getList("AttributeModifiers", true);
  }