Guest User

Untitled

a guest
Jul 18th, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. ORIGINAL
  2. return groundItem.isOnScreen() && groundItem.getGroundItem().getId() == ITEMS_TO_PICK_UP;
  3.  
  4. MINE:
  5. final int id = groundItem.getGroundItem().getId();
  6. for (int item : ITEMS_TO_PICK_UP) {
  7. if (item == id) {
  8. return groundItem.isOnScreen();
  9. }
  10. }
  11. return false;
Add Comment
Please, Sign In to add comment