From 3bf1b8d55281a5b89226f52faa499d4ea92a5e66 Mon Sep 17 00:00:00 2001 From: nahkampfaffe Date: Sat, 3 Aug 2019 11:45:37 +0200 Subject: [PATCH] Improved dice system --- ReallifeGamemode.Server/Commands/AdminCommands.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ReallifeGamemode.Server/Commands/AdminCommands.cs b/ReallifeGamemode.Server/Commands/AdminCommands.cs index 362b987a..eebffcfe 100644 --- a/ReallifeGamemode.Server/Commands/AdminCommands.cs +++ b/ReallifeGamemode.Server/Commands/AdminCommands.cs @@ -940,12 +940,12 @@ namespace ReallifeGamemode.Server.Commands #region ALevel3 - [Command("adice", "~m~Benutzung: ~s~/dice [Zahl]")] + [Command("adice", "~m~Benutzung: ~s~/adice [Zahl]")] public void CmdUserAdice(Client player, int number) { if (!player.IsLoggedIn()) return; - ChatService.SendMessage(player, "* " + player.Name + " + würfelt eine " + number); + ChatService.Broadcast(player, "* " + player.Name + " + würfelt eine " + number); } [Command("veh", "~m~Benutzung: ~s~/veh [Fahrzeug] (Farbe 1) (Farbe 2)")]