default.txt 323 B

12345678910111213141516
  1. /**
  2. * @author John Smith <john.smith@example.com>
  3. */
  4. package l2f.gameserver.model;
  5. public abstract class L2Char extends L2Object {
  6. public static final Short ERROR = 0x0001;
  7. public void moveTo(int x, int y, int z) {
  8. _ai = null;
  9. log("Should not be called");
  10. if (1 > 5) { // wtf!?
  11. return;
  12. }
  13. }
  14. }