diff --git a/README.md b/README.md index 19228d60..52d606e3 100644 --- a/README.md +++ b/README.md @@ -86,7 +86,7 @@ don't grant that permission. ## Fun Information - 500+ commands -- 27,000+ lines of JavaScript +- 28,000+ lines of JavaScript - 61,000+ lines of JSON data - 3 years of development @@ -342,6 +342,7 @@ Total: 530 ### Random Image: +* **dating:** Find the person of your dreams with this dating system! * **ai-artwork:** Responds with randomly generated artwork. * **ai-cat:** Responds with a randomly generated cat. * **ai-fursona:** Responds with a randomly generated fursona. @@ -807,7 +808,6 @@ Total: 530 ### Other: * **cleverbot:** Talk to Cleverbot. (Owner-Only) -* **dating:** Find the person of your dreams with this dating system! * **portal-send:** Send a message to a portal channel. * **prune:** Deletes up to 99 messages from the current channel. * **rename-all:** Renames every member of the server. (Owner-Only) @@ -1179,6 +1179,7 @@ here. * blush ([API](https://apidocs.imgur.com/)) * bro-hoof ([API](https://apidocs.imgur.com/)) * celebrate ([API](https://apidocs.imgur.com/)) + * dating ([API](https://apidocs.imgur.com/)) * eat ([API](https://apidocs.imgur.com/)) * explode ([API](https://apidocs.imgur.com/)) * fidget ([API](https://apidocs.imgur.com/)) diff --git a/package.json b/package.json index 0df358cf..bb196a77 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "xiao", - "version": "119.11.1", + "version": "119.11.2", "description": "Your personal server companion.", "main": "Xiao.js", "scripts": { diff --git a/util/Util.js b/util/Util.js index ff23b732..ed6e755d 100644 --- a/util/Util.js +++ b/util/Util.js @@ -182,7 +182,7 @@ module.exports = class Util { static async awaitPlayers(msg, max, min = 1) { if (max === 1) return [msg.author.id]; - const addS = min - 1 > 1 ? 's' : ''; + const addS = min - 1 === 1 ? '' : 's'; await msg.say( `You will need at least ${min - 1} more player${addS} (at max ${max - 1}). To join, type \`join game\`.` );