mirror of
https://github.com/danbulant/flying-squid
synced 2026-06-17 13:31:16 +00:00
page length to 7 like vanilla
This commit is contained in:
parent
b679dd6325
commit
71a85c0f48
1 changed files with 1 additions and 1 deletions
|
|
@ -21,7 +21,7 @@ module.exports.player=function(player, serv) {
|
|||
if (page < 0) return 'Page # must be >= 1';
|
||||
var hash = player.commands.uniqueHash;
|
||||
|
||||
var PAGE_LENGTH = 8;
|
||||
var PAGE_LENGTH = 7;
|
||||
|
||||
var found = Object.keys(hash).filter(h => (h + ' ').indexOf((search && search + ' ') || '') == 0);
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue