mirror of
https://github.com/danbulant/flying-squid
synced 2026-07-05 11:10:44 +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';
|
if (page < 0) return 'Page # must be >= 1';
|
||||||
var hash = player.commands.uniqueHash;
|
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);
|
var found = Object.keys(hash).filter(h => (h + ' ').indexOf((search && search + ' ') || '') == 0);
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue