diff --git a/QuestEditor.cs b/QuestEditor.cs index 5ed86b5..e132b9c 100644 --- a/QuestEditor.cs +++ b/QuestEditor.cs @@ -114,7 +114,8 @@ public static string ReadNullTerminated(Stream file) string ReformatString(string text) { - text = text.Replace("\r\n", ""); + text = text.Replace("\n\r\n", "\n"); + text = text.Replace("\r\n", "\n"); text = text.Replace("", ""); return text; }