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

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

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

revision 1473 by torben, Sat May 21 18:06:15 2011 UTC revision 1474 by torben, Sat May 21 18:10:19 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                  //needs to print facing direction                  //needs to print facing direction
24                                    

Legend:
Removed from v.1473  
changed lines
  Added in v.1474

  ViewVC Help
Powered by ViewVC 1.1.20