From 1d1d0ab9535825c5e4d004c1e9471509df8a0864 Mon Sep 17 00:00:00 2001 From: Luke Robles <98352913+lrobles-iterable@users.noreply.github.com> Date: Fri, 30 Dec 2022 12:50:22 -0800 Subject: [PATCH] Point stable diffusino at my desktops ip not hostname --- app/cogs/stable_diffusion.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/app/cogs/stable_diffusion.py b/app/cogs/stable_diffusion.py index a5c0afed..36593b31 100644 --- a/app/cogs/stable_diffusion.py +++ b/app/cogs/stable_diffusion.py @@ -40,8 +40,7 @@ class StableDiffusion(commands.Cog): # Send my requests to my gaming computer with the 3080 (if its up) if ctx.author.id == core_utils.my_id: - # ip = "192.168.1.29" - ip = "DESKTOP-D6O5TKS" + ip = "192.168.1.29" steps = 60 s = socket.socket(socket.AF_INET, socket.SOCK_STREAM) s.settimeout(1)