Jump to content

Recommended Posts

Posted
public void setMagic(ItemStack itemstack, Magic magic, int slotNumber) {
		CompoundNBT compoundnbt = itemstack.getOrCreateChildTag("Spell_book");
		if (!compoundnbt.contains("Magics", 0)) {
			compoundnbt.putIntArray("Magics", new ArrayList<>());
			itemstack.write(compoundnbt);
		}
		ListNBT listnbt = compoundnbt.getList("Magics", Constants.NBT.TAG_COMPOUND);
		List<Integer> list = Lists.newArrayList();
		if (!listnbt.isEmpty()) {
			CompoundNBT slot = new CompoundNBT();
			slot.putInt("Magic", magic.id);
			itemstack.write(slot);
			listnbt.set(slotNumber, slot);
			compoundnbt.put("Magics", listnbt);
		}
		itemstack.write(compoundnbt);
		Minecraft.getInstance().player.sendMessage(new StringTextComponent(Integer.toString(compoundnbt.getList("Magics", 10).getInt(0))), null);
	}

When I call the above method, I think that the value of magic id is displayed in the chat column, but no matter what I put in magic id, 0 is displayed in chat. What's wrong?

 

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Announcements



×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.