1
0
Fork 0

remove prompt in case people want to tweet only an image

akairo
loicbersier 5 years ago
parent 8c103ace29
commit cc3a34a50c

@ -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,

Loading…
Cancel
Save