micha4supporter

This commit is contained in:
Luke
2021-07-02 21:00:54 +02:00
parent c52f04026f
commit a35cae8bd2

View File

@@ -444,10 +444,9 @@ namespace ReallifeGamemode.Server.Commands
{ {
player.SafeTeleport(target.Position); player.SafeTeleport(target.Position);
player.Dimension = target.Dimension; player.Dimension = target.Dimension;
ChatService.SendMessage(player, "~c~* Du hast dich teleportiert.");
} }
ChatService.SendMessage(player, "~c~* Du hast dich teleportiert.");
} }
[Command("gh", "~m~Benutzung: ~s~/gh [Name]")] [Command("gh", "~m~Benutzung: ~s~/gh [Name]")]
@@ -477,9 +476,9 @@ namespace ReallifeGamemode.Server.Commands
{ {
target.SafeTeleport(player.Position); target.SafeTeleport(player.Position);
target.Dimension = player.Dimension; target.Dimension = player.Dimension;
ChatService.SendMessage(target, "~c~* Du wurdest teleportiert.");
} }
ChatService.SendMessage(target, "~c~* Du wurdest teleportiert.");
} }
[Command("pm", "~m~Benutzung: ~s~/pm [Spieler] [Nachricht]", GreedyArg = true)] [Command("pm", "~m~Benutzung: ~s~/pm [Spieler] [Nachricht]", GreedyArg = true)]