diff --git a/ReallifeGamemode.Server/Commands/AdminCommands.cs b/ReallifeGamemode.Server/Commands/AdminCommands.cs index 488ca64f..73862458 100644 --- a/ReallifeGamemode.Server/Commands/AdminCommands.cs +++ b/ReallifeGamemode.Server/Commands/AdminCommands.cs @@ -221,7 +221,7 @@ namespace ReallifeGamemode.Server.Commands NAPI.Entity.SetEntityVelocity(player.Vehicle, new Vector3()); } else player.Position = target.Position; - ChatService.SendMessage(player, "~c~* Du hast dich zu " + player.Name + " teleportiert."); + ChatService.SendMessage(player, "~c~* Du hast dich teleportiert."); } [Command("position", "~m~Benutzung: ~s~/position")] @@ -259,7 +259,7 @@ namespace ReallifeGamemode.Server.Commands NAPI.Entity.SetEntityVelocity(target.Vehicle, new Vector3()); } else target.Position = player.Position; - ChatService.SendMessage(target, "~c~* Du wurdest von " + player.Name + " teleportiert."); + ChatService.SendMessage(target, "~c~* Du wurdest teleportiert."); } [Command("aw", "~m~Benutzung: ~s~/aw [Spieler] [Nachricht]", GreedyArg = true)]