From eb645d6cc19b71837accf86dac0fc6c025ec92cf Mon Sep 17 00:00:00 2001 From: aviate Date: Sun, 29 Sep 2019 22:38:04 +0200 Subject: [PATCH] test --- ReallifeGamemode.Server/Commands/AdminCommands.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/ReallifeGamemode.Server/Commands/AdminCommands.cs b/ReallifeGamemode.Server/Commands/AdminCommands.cs index b9e51436..fd09fc0f 100644 --- a/ReallifeGamemode.Server/Commands/AdminCommands.cs +++ b/ReallifeGamemode.Server/Commands/AdminCommands.cs @@ -1638,8 +1638,7 @@ namespace ReallifeGamemode.Server.Commands return; } - string broadcastMsg = $"Serverzeit wurde auf ~g~{hour:D2}:{min:D2}:{sec:D2} ~s~gesetzt!"; - NAPI.Notification.SendNotificationToAll(broadcastMsg); + NAPI.Notification.SendNotificationToAll("Serverzeit wurde von ~g~" + player.Name + " ~s~auf ~g~ {hour:D2}:{min:D2}:{sec:D2}~s~ geƤndert.", true); TimeManager.PauseTimeManager(); NAPI.World.SetTime(hour, min, sec); return;