* Fixed selection wand not showing right numbers.

This commit is contained in:
Steffion 2013-09-28 20:17:07 +02:00
parent 1b6b3f19be
commit 57e01b75b7

View File

@ -53,14 +53,15 @@ public class OnPlayerInteractEvent implements Listener {
player,
ConfigC.normal_wandSetPosition,
"number-1",
"pos-%N(%A" + location.getX()
"pos-%N(%A" + location.getBlockX()
+ "%N, %A"
+ location.getY()
+ location.getBlockY()
+ "%N, %A"
+ location.getZ() + "%N)",
"x-" + location.getX(), "y-"
+ location.getY(), "z-"
+ location.getZ());
+ location.getBlockZ()
+ "%N)",
"x-" + location.getBlockX(), "y-"
+ location.getBlockY(),
"z-" + location.getBlockZ());
W.pos1.put(player, location);
}
} else if (action.equals(Action.RIGHT_CLICK_BLOCK)) {
@ -71,14 +72,15 @@ public class OnPlayerInteractEvent implements Listener {
player,
ConfigC.normal_wandSetPosition,
"number-2",
"pos-%N(%A" + location.getX()
"pos-%N(%A" + location.getBlockX()
+ "%N, %A"
+ location.getY()
+ location.getBlockY()
+ "%N, %A"
+ location.getZ() + "%N)",
"x-" + location.getX(), "y-"
+ location.getY(), "z-"
+ location.getZ());
+ location.getBlockZ()
+ "%N)",
"x-" + location.getBlockX(), "y-"
+ location.getBlockY(),
"z-" + location.getBlockZ());
W.pos2.put(player, location);
}
}