Advertisement
riking

ftfy

May 17th, 2012
188
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.     public static final double playerDetectRange = 5;
  2.     public void updateTick(World world, int i, int j, int k, Random random)
  3.     {
  4.     System.out.println("running update tick");
  5.        EntityPlayer player = world.getClosestPlayer(i, j, k, playerDetectRange);
  6.        player.addChatMessage("Running update tick...");
  7.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement