Advertisement
Guest User

Untitled

a guest
Mar 6th, 2016
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. private static void addOreDictItems(String oreDictName){
  2. if(oreDictName != null){
  3. List<ItemStack> list = OreDictionary.getOres(oreDictName);
  4. for (int i = 0; i < list.size(); i++) {
  5. TestList.addItemStackToList(list.get(i));
  6. }
  7. }
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement