diff --git a/src/commands/block/get.js b/src/commands/block/get.js index a3f26365..0e01206a 100644 --- a/src/commands/block/get.js +++ b/src/commands/block/get.js @@ -41,7 +41,7 @@ GetCommand.args = [ name: 'blockIds', required: true, description: 'Comma-separated block ID(s) to get information about.', - parse: input => input.split(',').filter(val => val), + parse: input => input.split(',').filter(Boolean), }, ];