/[projects]/miscJava/bukkit-minecraft-plugins/HoerupUtils/src/dk/thoerup/bukkit/hoeruputils/WhereisCommand.java
ViewVC logotype

Diff of /miscJava/bukkit-minecraft-plugins/HoerupUtils/src/dk/thoerup/bukkit/hoeruputils/WhereisCommand.java

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1483 by torben, Wed May 18 19:08:29 2011 UTC revision 1484 by torben, Sat May 28 13:35:23 2011 UTC
# Line 36  public class WhereisCommand implements C Line 36  public class WhereisCommand implements C
36                          return true;                          return true;
37                  }                  }
38                                    
39                  Location targetLoc = target.getLocation();                  Location targetLoc = target.getLocation();              
40                  Player player = (Player) sender;                  Player player = (Player) sender;
41                                    
42                    if (player.getLocation().getWorld() != targetLoc.getWorld()) {
43                            sender.sendMessage("Whereis: player " + args[0] + " is in another world: " + targetLoc.getWorld().getName() );
44                            return true;
45                    }
46                    
47                  int dist = calcDistance(player.getLocation(), targetLoc);                  int dist = calcDistance(player.getLocation(), targetLoc);
48                  int bearing = calcBearing(player.getLocation(), targetLoc);                  int bearing = calcBearing(player.getLocation(), targetLoc);
49    

Legend:
Removed from v.1483  
changed lines
  Added in v.1484

  ViewVC Help
Powered by ViewVC 1.1.20