From 08a4e86881e5686c721c017598489a94246fd863 Mon Sep 17 00:00:00 2001
From: loicbersier <loic.bersier1@gmail.com>
Date: Tue, 15 Jan 2019 16:55:43 +0100
Subject: [PATCH] Put the title on a separated message beacause discord mobile
 dosent support emote on title

---
 commands/owner/eval.js | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/commands/owner/eval.js b/commands/owner/eval.js
index 2937fcb..6b491f1 100644
--- a/commands/owner/eval.js
+++ b/commands/owner/eval.js
@@ -40,21 +40,21 @@ class EvalCommand extends Command {
 			const evalEmbed = new MessageEmbed()
 				.setColor('#00FF00')
 				.setThumbnail('https://cdn4.iconfinder.com/data/icons/gradient-ui-1/512/success-512.png')
-				.setTitle('<a:orangejustice:522142267490697236>	Eval succes <a:orangejustice:522142267490697236>')
 				.addField('Input', `\`\`\`js\n${code}\`\`\``)
 				.addField('Output', `\`\`\`js\n${clean(evaled)}\`\`\``)
 				.setTimestamp();
 
+			message.channel.send('<a:orangejustice:522142267490697236>	Eval succes <a:orangejustice:522142267490697236>');
 			message.channel.send(evalEmbed);
 		} catch (err) {
 			const errorEmbed = new MessageEmbed()
 				.setColor('#FF0000')
 				.setThumbnail('https://cdn4.iconfinder.com/data/icons/the-weather-is-nice-today/64/weather_48-512.png')
-				.setTitle('Eval failed <:sadpepe:534399181679230986>')
 				.addField('Input', `\`\`\`js\n${args.eval}\`\`\``)
 				.addField('Output', `\`\`\`js\n${clean(err)}\`\`\``)
 				.setTimestamp();
 
+			message.channel.send('Eval failed <:sadpepe:534399181679230986>');
 			message.channel.send(errorEmbed);
 		}
 	}