Skip to content

Commit

Permalink
fix setup typo (#4263)
Browse files Browse the repository at this point in the history
* fix setup typo

* updates
  • Loading branch information
gmriggs authored Jan 15, 2025
1 parent a64129f commit 9e92a81
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Source/ACE.Server/Program_Setup.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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}";
Expand Down

0 comments on commit 9e92a81

Please sign in to comment.