From 9e621a88e8052c4b96cade5a26f92d702b82421b Mon Sep 17 00:00:00 2001
From: Supositware <sup@libtar.de>
Date: Mon, 17 Oct 2022 16:24:38 +0200
Subject: [PATCH] Use everything

---
 commands/fun/stablediffusion.js | 12 +++++++++---
 1 file changed, 9 insertions(+), 3 deletions(-)

diff --git a/commands/fun/stablediffusion.js b/commands/fun/stablediffusion.js
index 20faf877..03dd5213 100644
--- a/commands/fun/stablediffusion.js
+++ b/commands/fun/stablediffusion.js
@@ -8,7 +8,7 @@ const { stableHordeApi, stableHordeID } = process.env;
 export default {
 	data: new SlashCommandBuilder()
 		.setName('stablediffusion')
-		.setDescription('AI generated image with stable diffusion (This can take very long)')
+		.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?')
@@ -28,8 +28,14 @@ async function generate(i, prompt, client) {
 			width: 512,
 			height: 512,
 		},
-		nsfw: true,
-		censor_nsfw: i.channel.nsfw ? false : true,
+		cfg_scale: 5,
+		use_gfpgan: true,
+		use_real_esrgan: true,
+		use_ldsr: true,
+		use_upscaling: true,
+		steps: 50,
+		nsfw: i.channel.nsfw ? true : false,
+		censor_nsfw: i.channel.nsfw ? true : false,
 	};
 
 	const fetchParameters = {