diff --git a/RecrownedAthenaeum.ConsoleTools/ConsoleUtilities.cs b/RecrownedAthenaeum.ConsoleTools/ConsoleUtilities.cs index 1837265..73ee3db 100644 --- a/RecrownedAthenaeum.ConsoleTools/ConsoleUtilities.cs +++ b/RecrownedAthenaeum.ConsoleTools/ConsoleUtilities.cs @@ -20,7 +20,7 @@ namespace RecrownedAthenaeum.Tools int currentLineSize = 0; for (int i = 0; i < words.Length; i++) { - if (currentLineSize + words[i].Length >= Console.BufferWidth - Console.CursorLeft) + if (currentLineSize + words[i].Length >= Console.BufferWidth - Console.CursorLeft -1) { currentLineSize = 0; stringBuilder.AppendLine();