diff --git a/TShockAPI/PaginationTools.cs b/TShockAPI/PaginationTools.cs index e64d3e2a..42a716fe 100644 --- a/TShockAPI/PaginationTools.cs +++ b/TShockAPI/PaginationTools.cs @@ -270,7 +270,7 @@ namespace TShockAPI termString = term.ToString(); } - bool goesOnNextLine = (lineBuilder.Length + termString.Length > maxCharsPerLine); + bool goesOnNextLine = (lineBuilder.Length + termString.Length + separator.Length > maxCharsPerLine); if (!goesOnNextLine) { if (lineBuilder.Length > 0)