From 18a01d8cc1be82dfcea3273e831428fd522e5fd5 Mon Sep 17 00:00:00 2001 From: Crypto137 Date: Sun, 10 Mar 2024 16:55:08 +0300 Subject: [PATCH] Update !tp command string output --- src/MHServerEmu/Common/Commands/GameCommands.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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()}"; } }