Jump to content

Ande

Members
  • Posts

    555
  • Joined

  • Last visited

  • Days Won

    1
  • Feedback

    100%

Posts posted by Ande

  1. public boolean lootOnGround(){
            GroundItem g;
            for (String s: GUILoot){
                g = closestGroundItemForName(s);
                if(g != null) return true;
            }
            return false;
        }
    
    

    Or just closestGroundItemForName((String[])GUILoot.toArray()) to pass it as a whole

×
×
  • Create New...