diff --git a/Server/src/main/core/game/activity/ActivityManager.java b/Server/src/main/core/game/activity/ActivityManager.java index 6540390f8..671249706 100644 --- a/Server/src/main/core/game/activity/ActivityManager.java +++ b/Server/src/main/core/game/activity/ActivityManager.java @@ -91,7 +91,7 @@ public final class ActivityManager { if (activityName == null) { int yLoc = player.getLocation().getY(); if (yLoc < 2000) { //credits to PlayerName - sendMessage(player, "You were stuck inside an instance, which should never happen. Please file a bug report, and include the following information: "+yLoc +". To prevent your client from crashing, you have been teleported back home. We apologise for the inconvenience."); + sendMessage(player, "You were stuck inside an instance, which should never happen. Please file a bug report, and include the following information: " + player.getLocation() + ". To prevent your client from crashing, you have been teleported back home. We apologise for the inconvenience."); player.setLocation(ServerConstants.HOME_LOCATION); } return;