Make Paginator.Output with perPage param public

This commit is contained in:
Goodlyay 2024-02-04 01:34:55 -08:00
parent c829f5eb02
commit fc438ec901

View File

@ -39,7 +39,7 @@ namespace MCGalaxy
Output(p, items, null, printer, cmd, type, modifier, 8);
}
static void Output<T>(Player p, IList<T> items,
public static void Output<T>(Player p, IList<T> items,
StringFormatter<T> formatter, ItemPrinter<T> printer,
string cmd, string type, string modifier, int perPage) {
int page, total = items.Count;