Added info how to read the next page to /info /help /motd /rules

This commit is contained in:
snowleo 2011-11-28 20:52:15 +01:00
parent 5e24584bf7
commit 7db7fd4136
13 changed files with 31 additions and 11 deletions

View file

@ -21,6 +21,6 @@ public class Commandinfo extends EssentialsCommand
final IText input = new TextInput(sender, "info", true, ess);
final IText output = new KeywordReplacer(input, sender, ess);
final TextPager pager = new TextPager(output);
pager.showPage(args.length > 0 ? args[0] : null, args.length > 1 ? args[1] : null, sender);
pager.showPage(args.length > 0 ? args[0] : null, args.length > 1 ? args[1] : null, "info", sender);
}
}