From 17a71e6b28e83ae2b5705d123ad75bfc4c2be46e Mon Sep 17 00:00:00 2001 From: Luke Robles <98352913+lrobles-iterable@users.noreply.github.com> Date: Thu, 22 Dec 2022 17:18:36 -0800 Subject: [PATCH] Fixing hostname for computer after reimaging --- app/cogs/stable_diffusion.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/cogs/stable_diffusion.py b/app/cogs/stable_diffusion.py index 87ba4972..a5c0afed 100644 --- a/app/cogs/stable_diffusion.py +++ b/app/cogs/stable_diffusion.py @@ -41,7 +41,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-KF5M0SD" + ip = "DESKTOP-D6O5TKS" steps = 60 s = socket.socket(socket.AF_INET, socket.SOCK_STREAM) s.settimeout(1)