This commit is contained in:
hydrant
2019-09-30 21:15:42 +02:00
parent e5f3a1fef0
commit e4d35d2da4
6 changed files with 2 additions and 260 deletions

View File

@@ -224,7 +224,7 @@ namespace ReallifeGamemode.Server.Commands
}
[Command("position", "~m~Benutzung: ~s~/position")]
public void CmdAdminShowPos(Client player)
public void CmdAdminPosition(Client player)
{
if (!player.GetUser()?.IsAdmin(AdminLevel.SUPPORTER) ?? true)
{
@@ -232,7 +232,7 @@ namespace ReallifeGamemode.Server.Commands
return;
}
ChatService.SendMessage(player, "Position: X Y Z H: " + player.Position);
ChatService.SendMessage(player, "Position: X Y Z H: " + player.Position + " " + player.Heading);
}
[Command("gh", "~m~Benutzung: ~s~/gh [Name]")]