diff --git a/TShockAPI/PaginationTools.cs b/TShockAPI/PaginationTools.cs
index 42a716fe..2e987e81 100644
--- a/TShockAPI/PaginationTools.cs
+++ b/TShockAPI/PaginationTools.cs
@@ -23,6 +23,9 @@ using System.Text;
namespace TShockAPI
{
+ ///
+ /// Provides tools for sending paginated output.
+ ///
public static class PaginationTools
{
public delegate Tuple LineFormatterDelegate(object lineData, int lineIndex, int pageNumber);
@@ -105,7 +108,7 @@ namespace TShockAPI
this.FooterTextColor = Color.Yellow;
this.NothingToDisplayString = null;
this.LineFormatter = null;
- this.LineTextColor = Color.White;
+ this.LineTextColor = Color.Yellow;
this.maxLinesPerPage = 4;
this.pageLimit = 0;
}
@@ -198,7 +201,7 @@ namespace TShockAPI
{
if (player is TSServerPlayer)
{
- Console.WriteLine(lineMessage);
+ player.SendInfoMessage(lineMessage);
}
else
{
@@ -239,11 +242,11 @@ namespace TShockAPI
PaginationTools.SendPage(player, pageNumber, dataToPaginate, dataToPaginate.Count, settings);
}
- public static List BuildLinesFromTerms(
- IEnumerable terms, Func