From e41e107c74c57ba6acc17cf7ca0c1ef6164922da Mon Sep 17 00:00:00 2001 From: Tooze Date: Fri, 24 Jul 2026 20:43:52 +0000 Subject: [PATCH] Apply 1 suggestion(s) to 1 file(s) Co-authored-by: Player Name --- Server/src/main/core/game/activity/ActivityManager.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;