From fc438ec90139cc7b62a60ef60b83604848fae9e6 Mon Sep 17 00:00:00 2001 From: Goodlyay Date: Sun, 4 Feb 2024 01:34:55 -0800 Subject: [PATCH] Make Paginator.Output with perPage param public --- MCGalaxy/util/Formatting/Paginator.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MCGalaxy/util/Formatting/Paginator.cs b/MCGalaxy/util/Formatting/Paginator.cs index b1d1369ff..4a4b9eec4 100644 --- a/MCGalaxy/util/Formatting/Paginator.cs +++ b/MCGalaxy/util/Formatting/Paginator.cs @@ -39,7 +39,7 @@ namespace MCGalaxy Output(p, items, null, printer, cmd, type, modifier, 8); } - static void Output(Player p, IList items, + public static void Output(Player p, IList items, StringFormatter formatter, ItemPrinter printer, string cmd, string type, string modifier, int perPage) { int page, total = items.Count;