use a more generic date time format for the generic log
This commit is contained in:
parent
c34cb17c52
commit
644fad649b
@ -1,4 +1,5 @@
|
||||
using System;
|
||||
using System.Globalization;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
@ -8,7 +9,7 @@ namespace EliteBGS.BGS {
|
||||
public class GenericDiscordLog : IDiscordLogGenerator {
|
||||
private string FormatDate() {
|
||||
DateTime today = DateTime.Now;
|
||||
return today.ToShortDateString();
|
||||
return today.ToString("dd/MM/yyyy");
|
||||
}
|
||||
|
||||
private string BuildCartoGraphics(Objective objective) {
|
||||
|
Loading…
Reference in New Issue
Block a user