From c789e91faebbd39b69be9bde32d444b368af47b7 Mon Sep 17 00:00:00 2001 From: Alex_qp Date: Tue, 4 May 2021 19:51:27 +0200 Subject: [PATCH] add console info msg --- ReallifeGamemode.Server/World/WeatherSync.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/ReallifeGamemode.Server/World/WeatherSync.cs b/ReallifeGamemode.Server/World/WeatherSync.cs index 04c8519c..2b2acc9b 100644 --- a/ReallifeGamemode.Server/World/WeatherSync.cs +++ b/ReallifeGamemode.Server/World/WeatherSync.cs @@ -1,6 +1,4 @@ using System; -using System.Collections.Generic; -using System.Text; using System.Timers; using GTANetworkAPI; @@ -57,6 +55,7 @@ namespace ReallifeGamemode.Server.World weatherTimer = new Timer(_syncInterval); weatherTimer.Start(); weatherTimer.Elapsed += OnWeatherTimer; + NAPI.Util.ConsoleOutput("Loaded WeatherSync"); } private static int GetNewTargetCount()