From c3c2c939a2e7d32c633f899754fe2c93eb122cd3 Mon Sep 17 00:00:00 2001 From: hydrant Date: Thu, 18 Mar 2021 20:37:20 +0100 Subject: [PATCH] =?UTF-8?q?car=20auch=20f=C3=BCr=20nicht=20gespeicherte?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ReallifeGamemode.Server/Commands/UserCommands.cs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ReallifeGamemode.Server/Commands/UserCommands.cs b/ReallifeGamemode.Server/Commands/UserCommands.cs index f27648db..a8c86ee3 100644 --- a/ReallifeGamemode.Server/Commands/UserCommands.cs +++ b/ReallifeGamemode.Server/Commands/UserCommands.cs @@ -71,6 +71,10 @@ namespace ReallifeGamemode.Server.Commands { ChatService.SendMessage(player, "~m~" + ((VehicleHash)pVeh.Model) + " | " + veh.ToString() + " | Farbe 1: " + pVeh.PrimaryColor + " | Farbe 2: " + pVeh.SecondaryColor + " | ID: " + pVeh.Handle.Value); } + else + { + ChatService.SendMessage(player, "~m~" + ((VehicleHash)pVeh.Model) + " | Farbe 1: " + pVeh.PrimaryColor + " | Farbe 2: " + pVeh.SecondaryColor + " | ID: " + pVeh.Handle.Value); + } } [Command("help", "~m~Benutzung: ~s~/help")] public void CmdHelp(Player player)