Guest User

Untitled

a guest
Jan 17th, 2019
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. }
  2. if(button.equals(GUI.clothing)){
  3. Button b = GUI.clothing;
  4. if(b.getText().equals("1")){
  5. b.setText("2");
  6. b.setDirty(true);
  7. }
  8. if(b.getText().equals("2")){
  9. b.setText("3");
  10. b.setDirty(true);
  11. }
  12. if(b.getText().equals("3")){
  13. b.setText("1");
  14. b.setDirty(true);
  15. }
Add Comment
Please, Sign In to add comment