Advertisement
Guest User

Untitled

a guest
Jun 28th, 2017
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. boolean doCorrect = false;
  2. if (Config.GEODATA)
  3. {
  4. switch (Config.GEO_CORRECT_Z)
  5. {
  6. case ALL:
  7. doCorrect = true;
  8. break;
  9. case TOWN:
  10. if (mob instanceof L2FolkInstance)
  11. doCorrect = true;
  12. break;
  13. case MONSTER:
  14. if (mob instanceof L2Attackable)
  15. doCorrect = true;
  16. break;
  17. }
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement