diff --git a/src/nl/Steffion/BlockHunt/Listeners/OnPlayerInteractEvent.java b/src/nl/Steffion/BlockHunt/Listeners/OnPlayerInteractEvent.java
index f729bdc..68197a4 100644
--- a/src/nl/Steffion/BlockHunt/Listeners/OnPlayerInteractEvent.java
+++ b/src/nl/Steffion/BlockHunt/Listeners/OnPlayerInteractEvent.java
@@ -55,7 +55,10 @@ public class OnPlayerInteractEvent implements Listener {
 													+ "%N, %A"
 													+ location.getY()
 													+ "%N, %A"
-													+ location.getZ() + "%N)");
+													+ location.getZ() + "%N)",
+											"x-" + location.getX(), "y-"
+													+ location.getY(), "z-"
+													+ location.getZ());
 									W.pos1.put(player, location);
 								}
 							} else if (action.equals(Action.RIGHT_CLICK_BLOCK)) {
@@ -71,7 +74,10 @@ public class OnPlayerInteractEvent implements Listener {
 													+ "%N, %A"
 													+ location.getY()
 													+ "%N, %A"
-													+ location.getZ() + "%N)");
+													+ location.getZ() + "%N)",
+											"x-" + location.getX(), "y-"
+													+ location.getY(), "z-"
+													+ location.getZ());
 									W.pos2.put(player, location);
 								}
 							}
diff --git a/src/nl/Steffion/BlockHunt/Managers/ConfigC.java b/src/nl/Steffion/BlockHunt/Managers/ConfigC.java
index 78ca4fd..2037dfc 100644
--- a/src/nl/Steffion/BlockHunt/Managers/ConfigC.java
+++ b/src/nl/Steffion/BlockHunt/Managers/ConfigC.java
@@ -84,7 +84,7 @@ public enum ConfigC {
 			W.messages),
 	normal_wandGaveWand ("%NHere you go ;)! &o(Use the %A&o%type%%N&o!)",
 			W.messages),
-	normal_wandSetPosition ("%NSet position %A#%number%%N to location: %pos%.",
+	normal_wandSetPosition ("%NSet position %A#%number%%N to location: (%A%x%%N, %A%y%%N, %A%z%%N).",
 			W.messages),
 	normal_createCreatedArena ("%NCreated an arena with the name '%A%name%%N'.",
 			W.messages),