Advertisement
MTM123

Untitled

Apr 25th, 2015
243
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.18 KB | None | 0 0
  1.     private int countItems(CraftingInventory inventory){
  2.         int count = 0;
  3.         for(ItemStack item : inventory.getContents()){
  4.             if(item != null){
  5.                 count++;
  6.             }
  7.         }
  8.         return count;
  9.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement