forked from Supositware/Haha-Yes
remove prompt in case people want to tweet only an image
This commit is contained in:
parent
8c103ace29
commit
cc3a34a50c
1 changed files with 2 additions and 3 deletions
|
@ -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…
Reference in a new issue