diff --git a/ReallifeGamemode.Server/Commands/AdminCommands.cs b/ReallifeGamemode.Server/Commands/AdminCommands.cs index 1ab56afd..85435467 100644 --- a/ReallifeGamemode.Server/Commands/AdminCommands.cs +++ b/ReallifeGamemode.Server/Commands/AdminCommands.cs @@ -979,7 +979,7 @@ namespace ReallifeGamemode.Server.Commands foreach (var managedClient in peopleInRange) { if (!managedClient.IsLoggedIn()) return; - ChatService.SendMessage(managedClient, "* " + player.Name + " hat eine " + number + " gewürfelt."); + ChatService.SendMessage(managedClient, "* " + player.Name + " hat eine " + number + " gewürfelt."; } } diff --git a/ReallifeGamemode.Server/Commands/UserCommands.cs b/ReallifeGamemode.Server/Commands/UserCommands.cs index 0b58476c..0989176c 100644 --- a/ReallifeGamemode.Server/Commands/UserCommands.cs +++ b/ReallifeGamemode.Server/Commands/UserCommands.cs @@ -26,7 +26,7 @@ namespace ReallifeGamemode.Server.Commands foreach (var managedClient in peopleInRange) { if (!managedClient.IsLoggedIn()) return; - ChatService.SendMessage(managedClient, "* " + player.Name + " hat eine " + number + " gewürfelt."); + ChatService.SendMessage(managedClient, "* " + player.Name + " hat eine " + number + " gewürfelt."; } }