loads of changes, most mod commands done
diff --git a/src/commands/mod/unmute.ts b/src/commands/mod/unmute.ts
new file mode 100644
index 0000000..5194bce
--- /dev/null
+++ b/src/commands/mod/unmute.ts
@@ -0,0 +1,18 @@
+import { CommandInteraction } from "discord.js";
+import { SlashCommandSubcommandBuilder } from "@discordjs/builders";
+import { WrappedCheck } from "jshaiku";
+
+const command = (builder: SlashCommandSubcommandBuilder) =>
+    builder
+    .setName("unmute")
+    .setDescription("Unmutes a member")
+
+const callback = (interaction: CommandInteraction) => {
+    interaction.reply("Command incomplete [mod/unmute]");
+}
+
+const check = (interaction: CommandInteraction, defaultCheck: WrappedCheck) => {
+    return true;
+}
+
+export { command, callback, check };
\ No newline at end of file