Advertisement
Guest User

Untitled

a guest
Feb 6th, 2016
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. //LINE 27 IS HERE.
  2. public static void init () {
  3.  
  4. if(lobbyWorld.getEntities() == null || lobbyWorld.equals(null)){
  5. System.out.println("Lobby world is null.");
  6. }else{
  7. for (Entity current : lobbyWorld.getEntities()) {
  8. if (current instanceof Item) {
  9. current.remove();
  10. }
  11. }
  12. }
  13.  
  14.  
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement