mirror of
https://github.com/arthur-pbty/xiao.git
synced 2026-06-26 14:19:11 +02:00
Beep
This commit is contained in:
@@ -13,14 +13,13 @@ module.exports = class ComplimentCommand extends Command {
|
||||
key: 'user',
|
||||
prompt: 'What user do you want to compliment?',
|
||||
type: 'user',
|
||||
default: ''
|
||||
default: msg => msg.author
|
||||
}
|
||||
]
|
||||
});
|
||||
}
|
||||
|
||||
run(msg, { user }) {
|
||||
if (!user) user = msg.author;
|
||||
return msg.say(`${user.username}, ${compliments[Math.floor(Math.random() * compliments.length)]}`);
|
||||
}
|
||||
};
|
||||
|
||||
@@ -17,7 +17,7 @@ module.exports = class GuessLooksCommand extends Command {
|
||||
key: 'user',
|
||||
prompt: 'Which user do you want me to guess the looks of?',
|
||||
type: 'user',
|
||||
default: ''
|
||||
default: msg => msg.author
|
||||
}
|
||||
]
|
||||
});
|
||||
|
||||
@@ -13,14 +13,13 @@ module.exports = class RoastCommand extends Command {
|
||||
key: 'user',
|
||||
prompt: 'What user do you want to roast?',
|
||||
type: 'user',
|
||||
default: ''
|
||||
default: msg => msg.author
|
||||
}
|
||||
]
|
||||
});
|
||||
}
|
||||
|
||||
run(msg, { user }) {
|
||||
if (!user) user = msg.author;
|
||||
return msg.say(`${user.username}, ${roasts[Math.floor(Math.random() * roasts.length)]}`);
|
||||
}
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user