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

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

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

revision 1472 by torben, Sat May 21 18:06:15 2011 UTC revision 1475 by torben, Mon May 23 15:12:25 2011 UTC
# Line 18  public class GetposCommand implements Co Line 18  public class GetposCommand implements Co
18                  Player p = (Player) sender;                  Player p = (Player) sender;
19                  Location l = p.getLocation();                  Location l = p.getLocation();
20                                    
21                  String message = String.format("Your current location is %d,%d,%d", l.getX(), l.getY(), l.getZ() );                  String message = String.format("Your current location is %d,%d,%d", (int)l.getX(), (int)l.getY(), (int)l.getZ() );
22                  p.sendMessage(message);                  p.sendMessage(message);
23                    p.sendMessage( String.format("%f, %f", l.getPitch(), l.getYaw()) );
24                  //needs to print facing direction                  //needs to print facing direction
25                                    
26                  // TODO Auto-generated method stub                  // TODO Auto-generated method stub

Legend:
Removed from v.1472  
changed lines
  Added in v.1475

  ViewVC Help
Powered by ViewVC 1.1.20