From 396f2b37ee6b97a5408a8acf2118641bae578144 Mon Sep 17 00:00:00 2001 From: Max Rigout <71095568+maxrigout@users.noreply.github.com> Date: Thu, 20 Feb 2025 12:27:30 -0500 Subject: [PATCH] updated IsNight definition so that it considers Evening and Night --- P3D/World/World.vb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/P3D/World/World.vb b/P3D/World/World.vb index 09dc67c50..bed13b476 100644 --- a/P3D/World/World.vb +++ b/P3D/World/World.vb @@ -984,7 +984,7 @@ endsub: Public Shared Function IsNight() As Boolean Dim currentTime = GetTime() - Return currentTime.Equals(DayTimes.Night) Or currentTime.Equals(DayTimes.Morning) + Return currentTime.Equals(DayTimes.Night) Or currentTime.Equals(DayTimes.Evening) End Function End Class \ No newline at end of file