updated IsNight definition so that it considers Evening and Night

This commit is contained in:
Max Rigout 2025-02-20 12:27:30 -05:00
parent 7a920335d4
commit 396f2b37ee
1 changed files with 1 additions and 1 deletions

View File

@ -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