Fixed client/weather returning the wrong date

This commit is contained in:
Chomp
2025-01-16 14:51:10 +00:00
parent c385d77d1e
commit fd969976eb
+1 -1
View File
@@ -46,7 +46,7 @@ public class WeatherGenerator
*/
public void CalculateGameTime(WeatherData data)
{
var computedDate = new DateTime();
var computedDate = DateTime.Now;
var formattedDate = this._timeUtil.FormatDate(computedDate);
data.Date = formattedDate;