diff --git a/commands/general/tweet.js b/commands/general/tweet.js
index efc81600..b3baf8b1 100644
--- a/commands/general/tweet.js
+++ b/commands/general/tweet.js
@@ -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,