Fixed translate

This commit is contained in:
Supositware 2018-12-31 20:56:13 +01:00
parent e3082c228e
commit 4a51c3570d

View file

@ -8,6 +8,7 @@ class TranslationCommand extends Command {
super('translation', { super('translation', {
aliases: ['translation', 'trn'], aliases: ['translation', 'trn'],
category: 'utility', category: 'utility',
split: 'sticky',
description: 'Translate the text you send into the lanuguage you selected', description: 'Translate the text you send into the lanuguage you selected',
args: [ args: [
{ {
@ -29,7 +30,6 @@ class TranslationCommand extends Command {
} }
async exec(message, args) { async exec(message, args) {
console.log(args.language , args.text)
let language = args.language; let language = args.language;
let text = args.text; let text = args.text;