diff --git a/src/MHServerEmu/Common/Commands/GameCommands.cs b/src/MHServerEmu/Common/Commands/GameCommands.cs index 52bd3f672..5ad5258d5 100644 --- a/src/MHServerEmu/Common/Commands/GameCommands.cs +++ b/src/MHServerEmu/Common/Commands/GameCommands.cs @@ -149,7 +149,7 @@ public string Teleport(string[] @params, FrontendClient client) teleportPoint += client.LastPosition; client.CurrentGame.EventManager.AddEvent(client, Games.Events.EventEnum.ToTeleport, 0, teleportPoint); - return $"Teleporting to {teleportPoint}"; + return $"Teleporting to {teleportPoint.ToStringNames()}"; } }