From d71b4eb5b07e39d71045f9fda94d5f016bc113cb Mon Sep 17 00:00:00 2001 From: Benjamin Palko Date: Thu, 3 Oct 2024 20:31:42 -0400 Subject: [PATCH] replace db value with PublicAddress --- db/setup_auth.sql | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 db/setup_auth.sql diff --git a/db/setup_auth.sql b/db/setup_auth.sql new file mode 100644 index 0000000..9d2ad67 --- /dev/null +++ b/db/setup_auth.sql @@ -0,0 +1,7 @@ +USE [RustyHearts_Auth] +GO + +UPDATE ServerOption +SET PublicAddress = "" +WHERE PublicAddress = "192.168.1.100"; +GO