diff --git a/commands/fun/meow.js b/commands/fun/meow.js
deleted file mode 100644
index 24fc05a..0000000
--- a/commands/fun/meow.js
+++ /dev/null
@@ -1,15 +0,0 @@
-const { Command } = require('discord.js-commando');
-module.exports = class MeowCommand extends Command {
-    constructor(client) {
-        super(client, {
-            name: 'meow',
-            group: 'fun',
-            memberName: 'meow',
-            description: 'Replies with a meow, kitty cat.',
-        });
-    }
-
-    run(message) {
-        return message.say('Meow!');
-    }
-};
\ No newline at end of file