diff --git a/MCGalaxy/CorePlugin/NotesPlugin.cs b/MCGalaxy/CorePlugin/NotesPlugin.cs index 9a1f208f7..66e579e75 100644 --- a/MCGalaxy/CorePlugin/NotesPlugin.cs +++ b/MCGalaxy/CorePlugin/NotesPlugin.cs @@ -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); }