This commit is contained in:
Daniel Odendahl Jr
2017-08-26 01:24:24 +00:00
parent 56e72f7509
commit 457a75b325
3 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -20,7 +20,7 @@ module.exports = class ShardInfoCommand extends Command {
type: 'integer',
validate: shard => {
if (shard < this.client.options.shardCount && shard > -1) return true;
return 'Invalid Shard ID';
return 'Invalid Shard ID.';
}
}
]