From 379fee092c03b2eb5c75587f2135d5d5a020a7ac Mon Sep 17 00:00:00 2001 From: hydrant Date: Sun, 28 Jul 2019 21:57:45 +0200 Subject: [PATCH] Change setweather Notification --- ReallifeGamemode.Server/Commands/AdminCommands.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ReallifeGamemode.Server/Commands/AdminCommands.cs b/ReallifeGamemode.Server/Commands/AdminCommands.cs index 2866137f..2a40055f 100644 --- a/ReallifeGamemode.Server/Commands/AdminCommands.cs +++ b/ReallifeGamemode.Server/Commands/AdminCommands.cs @@ -2147,7 +2147,7 @@ namespace ReallifeGamemode.Server.Commands if (!weatherBefore.Equals(weatherAfter)) { ChatService.SendMessage(player, "~w~Wetter geändert: " + NAPI.World.GetWeather()); - NAPI.Notification.SendNotificationToAll("Das Wetter wurde auf ~g~ " + NAPI.World.GetWeather() + "~s~ geändert.", true); + NAPI.Notification.SendNotificationToAll("Das Wetter wurde von " + player.Name + " auf ~g~ " + NAPI.World.GetWeather() + "~s~ geändert.", true); } else {