remove prompt in case people want to tweet only an image

This commit is contained in:
loicbersier 2019-11-25 23:19:37 +01:00
parent 8c103ace29
commit cc3a34a50c

View file

@ -21,9 +21,6 @@ class tweetCommand extends Command {
{
id: 'text',
type: 'string',
prompt: {
start: 'Write something to tweet',
},
match: 'rest'
}
],
@ -40,6 +37,8 @@ class tweetCommand extends Command {
let date = new Date();
let Attachment = (message.attachments).array();
if (!Attachment[0] && !args.text) return message.channel.send('You need to input something for me to tweet!');
let T = new Twit({
consumer_key: twiConsumer,
consumer_secret: twiConsumerSecret,