mirror of
https://github.com/arthur-pbty/xiao.git
synced 2026-06-07 23:05:04 +02:00
Dick is NSFW again
This commit is contained in:
@@ -384,7 +384,7 @@ Total: 531
|
||||
* **butt:** Determines a user's butt quality.
|
||||
* **coolness:** Determines a user's coolness.
|
||||
* **cuteness:** Determines a user's cuteness.
|
||||
* **dick:** Determines your dick size.
|
||||
* **dick:** Determines your dick size. (NSFW)
|
||||
* **friendship:** Determines how good friends two users are.
|
||||
* **guess-looks:** Guesses what a user looks like.
|
||||
* **iq:** Determines a user's IQ.
|
||||
|
||||
@@ -9,6 +9,7 @@ module.exports = class DickCommand extends Command {
|
||||
group: 'random-seed',
|
||||
memberName: 'dick',
|
||||
description: 'Determines your dick size.',
|
||||
nsfw: true,
|
||||
args: [
|
||||
{
|
||||
key: 'user',
|
||||
@@ -22,12 +23,12 @@ module.exports = class DickCommand extends Command {
|
||||
|
||||
run(msg, { user }) {
|
||||
if (this.client.isOwner(user)) {
|
||||
if (user.id === msg.author.id) return msg.reply(`8${'='.repeat(20)}D`);
|
||||
if (user.id === msg.author.id) return msg.reply(`8${'='.repeat(50)}D`);
|
||||
return msg.reply(`8=D`);
|
||||
}
|
||||
const clientAuthor = user.id === this.client.user.id;
|
||||
const random = MersenneTwister19937.seed(clientAuthor ? msg.author.id : user.id);
|
||||
const length = integer(0, 20)(random);
|
||||
const length = integer(0, 50)(random);
|
||||
return msg.reply(`8${'='.repeat(clientAuthor ? length + 1 : length)}D`);
|
||||
}
|
||||
};
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "xiao",
|
||||
"version": "119.12.1",
|
||||
"version": "119.12.2",
|
||||
"description": "Your personal server companion.",
|
||||
"main": "Xiao.js",
|
||||
"scripts": {
|
||||
|
||||
Reference in New Issue
Block a user