Fix notes logging minutes instead of months.. oops.

This commit is contained in:
UnknownShadow200 2016-09-03 12:51:48 +10:00
parent 3c9b503048
commit b75360efae

View File

@ -575,7 +575,7 @@ namespace MCGalaxy {
if (!Server.LogNotes) return;
string src = who == null ? "(console)" : who.name;
string time = DateTime.UtcNow.ToString("dd/mm/yyyy");
string time = DateTime.UtcNow.ToString("dd/MM/yyyy");
Server.Notes.Append(target + " " + type + " " + src + " " + time);
}
@ -583,7 +583,7 @@ namespace MCGalaxy {
if (!Server.LogNotes) return;
string src = who == null ? "(console)" : who.name;
string time = DateTime.UtcNow.ToString("dd/mm/yyyy");
string time = DateTime.UtcNow.ToString("dd/MM/yyyy");
reason = reason.Replace(" ", "%20");
Server.Notes.Append(target + " " + type + " " + src + " " + time + " " + reason);
}