Jump to content

[Solved] [1.9 / 1.10] EnchantmentsBookList


PegBeard

Recommended Posts

In 1.8 I used this piece of code to drop a random enchanted book from the list of registered enchantments.

 

Enchantment enchant = Enchantment.enchantmentsBookList[itemRand.nextInt(Enchantment.enchantmentsBookList.length)];
int level = MathHelper.getRandomIntegerInRange(itemRand, enchant.getMinLevel(), enchant.getMaxLevel());
ItemStack book = Items.ENCHANTED_BOOK.getEnchantedItemStack(new EnchantmentData(enchant, level));
player.entityDropItem(book, 1);

 

However, in 1.9.4 'enchantmentsBookList cannot be resolved'. I have done some searching, but I have been unable to find a replacement. Is there a method I can use to fix this piece of code, or should I try something different.

Link to comment
Share on other sites

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.