Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added support for input transfer during logging #92

Open
wants to merge 6 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions Core/ConfigWizard.cs
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ public static void RunConfigWizard(bool useDefault)
!input.Equals("keep", StringComparison.OrdinalIgnoreCase))
{
Console.WriteLine("Do you want to edit that configuration? [edit/keep]: ");
ConsoleUtil.WriteInputIntro();
input = Console.ReadLine();
}

Expand Down Expand Up @@ -242,6 +243,7 @@ private static void SaveConfig(bool silent = false)
{
Console.WriteLine(
$"Do you want to save the configuration only for THIS server (on port {LocalAdmin.GamePort} or should it become a GLOBAL configuration (default one for all future servers - servers not configured yet)? [this/global]: ");
ConsoleUtil.WriteInputIntro();
input = Console.ReadLine();
}
}
Expand Down
Loading