Advertisement
Guest User

Untitled

a guest
Oct 16th, 2016
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. for (File file : new File(plugin.getDataFolder(), "pasta").listFiles()) {
  2. ItemStack is = new ItemStack(Material.WOOL);
  3. ItemMeta meta = is.getItemMeta();
  4. meta.setDisplayName(file.getName());
  5. is.setItemMeta(meta);
  6. inventory.add(i);
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement