diff --git a/commands/owner/eval.js b/commands/owner/eval.js
index 2937fcbc..6b491f14 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);
 		}
 	}