Skip to content

Instantly share code, notes, and snippets.

@hakusaro
Created January 9, 2013 00:04
Show Gist options
  • Save hakusaro/4489265 to your computer and use it in GitHub Desktop.
Save hakusaro/4489265 to your computer and use it in GitHub Desktop.
ItemMeta usage in Bukkit
ItemStack i = new ItemStack(Material.WRITTEN_BOOK);
ItemFactory itemFactory = plugin.getServer().getItemFactory();
BookMeta bookMeta = (BookMeta) itemFactory.getItemMeta(Material.WRITTEN_BOOK);
i.setItemMeta(bookMeta);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment