From 672702eef571017e48bd6501f96f64559d0c8e73 Mon Sep 17 00:00:00 2001 From: Lukas Moungos Date: Sat, 3 Aug 2019 22:18:45 +0200 Subject: [PATCH] Revert "fix balbos bugs" This reverts commit 467359d11f646bd3a12cf919da8344fd9c63d15d. --- ReallifeGamemode.Server/Commands/AdminCommands.cs | 2 +- ReallifeGamemode.Server/Commands/UserCommands.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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."; } }