From 9e92a8125880759238fe3d169295de4485b4577b Mon Sep 17 00:00:00 2001 From: gmriggs Date: Tue, 14 Jan 2025 20:53:05 -0500 Subject: [PATCH] fix setup typo (#4263) * fix setup typo * updates --- Source/ACE.Server/Program_Setup.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/ACE.Server/Program_Setup.cs b/Source/ACE.Server/Program_Setup.cs index 4c2f6a86ca..5965b284e7 100644 --- a/Source/ACE.Server/Program_Setup.cs +++ b/Source/ACE.Server/Program_Setup.cs @@ -268,7 +268,7 @@ private static void DoOutOfBoxSetup(string configFile) Console.WriteLine(); Console.WriteLine(); - Console.Write("Typically, all three databases will be on the using the same SQL server credentials, is this how you want to proceed? (Y/n) "); + Console.Write("Typically, all three databases will be using the same SQL server credentials, is this how you want to proceed? (Y/n) "); if (!nonInteractiveSetup) variable = Console.ReadLine(); else @@ -357,7 +357,7 @@ private static void DoOutOfBoxSetup(string configFile) Console.WriteLine(); Console.WriteLine(); Console.WriteLine(); - Console.Write("Do you want to ACEmulator to attempt to initialize your SQL databases? This will erase any existing ACEmulator specific databases that may already exist on the server (Y/n): "); + Console.Write("Do you want ACEmulator to attempt to initialize your SQL databases? This will erase any existing ACEmulator specific databases that may already exist on the server (Y/n): "); if (!nonInteractiveSetup) variable = Console.ReadLine(); var sqlConnectInfo = $"server={config.MySql.World.Host};port={config.MySql.World.Port};user={config.MySql.World.Username};password={config.MySql.World.Password};{config.MySql.World.ConnectionOptions}";