More work on statistics

This commit is contained in:
Pieter Vander Vennet 2022-08-18 23:37:44 +02:00
parent 56b1337743
commit 5ef9a57bb0
5 changed files with 325 additions and 173 deletions

View file

@ -1039,5 +1039,12 @@ In the case that MapComplete is pointed to the testing grounds, the edit will be
}
return result
}
public static SetMidnight(d : Date): void{
d.setUTCHours(0)
d.setUTCSeconds(0)
d.setUTCMilliseconds(0)
d.setUTCMinutes(0)
}
}