diff --git a/commands/fun/stablediffusion.js b/commands/AI/txt2img.js
similarity index 98%
rename from commands/fun/stablediffusion.js
rename to commands/AI/txt2img.js
index 03dd521..9b5e6a9 100644
--- a/commands/fun/stablediffusion.js
+++ b/commands/AI/txt2img.js
@@ -7,13 +7,13 @@ const { stableHordeApi, stableHordeID } = process.env;
 
 export default {
 	data: new SlashCommandBuilder()
-		.setName('stablediffusion')
+		.setName('txt2img')
 		.setDescription('AI generated image with stable diffusion (If credit are low it may be slow)')
 		.addStringOption(option =>
 			option.setName('prompt')
 				.setDescription('What do you want the AI to generate?')
 				.setRequired(true)),
-	category: 'fun',
+	category: 'AI',
 	async execute(interaction, args, client) {
 		await interaction.deferReply();
 		generate(interaction, args.prompt, client);