diff --git a/commands/utility/listemote.js b/commands/utility/listemote.js
index 3dc3a4fd..57d86890 100644
--- a/commands/utility/listemote.js
+++ b/commands/utility/listemote.js
@@ -9,7 +9,7 @@ module.exports = class listEmoteCommand extends Command {
         });
     }
 
-    async run(message, { text }) {
+    async run(message) {
             const emojiList = message.guild.emojis.map((e, x) => (x + ' = ' + e) + ' | ' +e.name).join('\n');
             message.channel.send(emojiList);
           }