mirror of
https://github.com/ChomeNS/chomens-bot-mc.git
synced 2024-11-14 18:54:55 -05:00
Rewrite urban
command
This commit is contained in:
parent
57220e0daa
commit
15d41b6ac8
1 changed files with 6 additions and 10 deletions
|
@ -5,15 +5,11 @@ module.exports = {
|
||||||
description: 'Working Urban Dictionary',
|
description: 'Working Urban Dictionary',
|
||||||
usage: '<word>',
|
usage: '<word>',
|
||||||
trusted: 0,
|
trusted: 0,
|
||||||
execute (bot, username, sender, prefix, args, config, hash, ownerhash, selector) {
|
async execute (bot, username, sender, prefix, args, config, hash, ownerhash, selector) {
|
||||||
urban.autocompleteExtra(args[0], (error, results) => {
|
const definitions = await urban.define(args.join(' '))
|
||||||
if (error) {
|
|
||||||
bot.tellraw(selector, [{ text: '[', color: 'dark_red' }, { text: 'Urban', color: 'red' }, { text: '] ', color: 'dark_red' }, { text: error.message, color: 'red' }])
|
for (const definition of definitions) {
|
||||||
return
|
bot.tellraw(selector, [{ text: '[', color: 'dark_red' }, { text: 'Urban', color: 'red' }, { text: '] ', color: 'dark_red' }, { text: definition.word, color: 'white' }, { text: ' - ', color: 'white' }, { text: definition.definition, color: 'white' }])
|
||||||
}
|
}
|
||||||
results.forEach(({ preview, term }) => {
|
|
||||||
bot.tellraw(selector, [{ text: '[', color: 'dark_red' }, { text: 'Urban', color: 'red' }, { text: '] ', color: 'dark_red' }, { text: term, color: 'white' }, { text: ' - ', color: 'white' }, { text: preview, color: 'white' }])
|
|
||||||
})
|
|
||||||
})
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue