diff --git a/commands/fun/dectalk.js b/commands/fun/tts/dectalk.js similarity index 84% rename from commands/fun/dectalk.js rename to commands/fun/tts/dectalk.js index efef44f..d43519a 100644 --- a/commands/fun/dectalk.js +++ b/commands/fun/tts/dectalk.js @@ -15,9 +15,9 @@ class dectalkCommand extends Command { } ], description: { - content: 'Generate your text into dectalk', - usage: '', - examples: [''] + content: 'Send a wav of what you wrote into .wav with dectalk', + usage: '[text]', + examples: ['This command is very epic'] } }); } diff --git a/commands/fun/dectalkvc.js b/commands/fun/tts/dectalkvc.js similarity index 88% rename from commands/fun/dectalkvc.js rename to commands/fun/tts/dectalkvc.js index 8835d6c..d43bb3d 100644 --- a/commands/fun/dectalkvc.js +++ b/commands/fun/tts/dectalkvc.js @@ -15,9 +15,9 @@ class dectalkvcCommand extends Command { } ], description: { - content: 'Generate your text into dectalk and says it in voice chat', - usage: '', - examples: [''] + content: 'Repeat what you sent in the voice chat you are currently in', + usage: '[text]', + examples: ['This command is very epic'] } }); } diff --git a/commands/fun/tts.js b/commands/fun/tts/tts.js similarity index 95% rename from commands/fun/tts.js rename to commands/fun/tts/tts.js index bb3c71c..070193a 100644 --- a/commands/fun/tts.js +++ b/commands/fun/tts/tts.js @@ -1,6 +1,6 @@ const { Command } = require('discord-akairo'); const textToSpeech = require('@google-cloud/text-to-speech'); -const rand = require('../../rand.js'); +const rand = require('../../../rand.js'); const gclient = new textToSpeech.TextToSpeechClient(); const fs = require('fs'); diff --git a/commands/fun/ttsvc.js b/commands/fun/tts/ttsvc.js similarity index 96% rename from commands/fun/ttsvc.js rename to commands/fun/tts/ttsvc.js index c104ba1..29aaa2e 100644 --- a/commands/fun/ttsvc.js +++ b/commands/fun/tts/ttsvc.js @@ -1,6 +1,6 @@ const { Command } = require('discord-akairo'); const textToSpeech = require('@google-cloud/text-to-speech'); -const rand = require('../../rand.js'); +const rand = require('../../../rand.js'); const gclient = new textToSpeech.TextToSpeechClient(); const fs = require('fs');