Advertisement
Guest User

Untitled

a guest
Jun 28th, 2017
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.40 KB | None | 0 0
  1.  private boolean pendingCollection() {
  2.         if (getGrandExchange().isOpen()) {
  3.             for (GrandExchange.Box b : GrandExchange.Box.values()) {
  4.                 if (getGrandExchange().getStatus(b) == GrandExchange.Status.FINISHED_SALE || getGrandExchange().getStatus(b) == GrandExchange.Status.FINISHED_BUY)
  5.                     return true;
  6.             }
  7.         }
  8.         return false;
  9.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement