Fix /notes, oops.

This commit is contained in:
UnknownShadow200 2017-05-19 21:22:27 +10:00
parent f2c2061b7c
commit b33ecae5a4

View File

@ -58,7 +58,7 @@ namespace MCGalaxy.Core {
string time = DateTime.UtcNow.ToString("dd/MM/yyyy");
string data = action.Target + " " + type + " " + src + " " + time;
if (action.Reason != "") {
data = " " + action.Reason.Replace(" ", "%20");
data += " " + action.Reason.Replace(" ", "%20");
}
Server.Notes.Append(data);
}