From 4077a0baee18259c6d180b0d77018d5b38b2b1b2 Mon Sep 17 00:00:00 2001 From: Benjamin Palko Date: Fri, 27 Sep 2024 08:16:34 -0400 Subject: [PATCH] update ServerOption with PublicAddress script --- setup_auth.sql | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 setup_auth.sql diff --git a/setup_auth.sql b/setup_auth.sql new file mode 100644 index 0000000..9d2ad67 --- /dev/null +++ b/setup_auth.sql @@ -0,0 +1,7 @@ +USE [RustyHearts_Auth] +GO + +UPDATE ServerOption +SET PublicAddress = "" +WHERE PublicAddress = "192.168.1.100"; +GO