From 75adc464a5963025980d6769e97bd53f8a86f102 Mon Sep 17 00:00:00 2001 From: hydrant Date: Thu, 20 May 2021 10:06:26 +0200 Subject: [PATCH] Feedback bei /respawnvehicle --- ReallifeGamemode.Server/Commands/AdminCommands.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ReallifeGamemode.Server/Commands/AdminCommands.cs b/ReallifeGamemode.Server/Commands/AdminCommands.cs index 6ba6f34b..58b0cc6e 100644 --- a/ReallifeGamemode.Server/Commands/AdminCommands.cs +++ b/ReallifeGamemode.Server/Commands/AdminCommands.cs @@ -1240,6 +1240,8 @@ namespace ReallifeGamemode.Server.Commands return; } + ChatService.SendMessage(player, $"~b~[AMDIN]~s~ Das Fahrzeug ~y~{serverVehicle.Id}~s~ wurde respawnt"); + Vehicle newVeh = serverVehicle.Spawn(veh); newVeh.Repair(); newVeh.Rotation = new Vector3(0, 0, serverVehicle.Heading);