diff --git a/Projects/UOContent/Misc/AccountPrompt.cs b/Projects/UOContent/Misc/AccountPrompt.cs index fc283892b..032c55526 100644 --- a/Projects/UOContent/Misc/AccountPrompt.cs +++ b/Projects/UOContent/Misc/AccountPrompt.cs @@ -1,4 +1,3 @@ -using System; using Server.Accounting; using Server.Logging; @@ -12,18 +11,16 @@ public static class AccountPrompt { if (Accounts.Count == 0) { - Console.WriteLine("This server has no accounts."); - Console.Write("Do you want to create the owner account now? (y/n): "); + logger.Warning("This server has no accounts."); + logger.Information("Do you want to create the owner account now? (y/n):"); var answer = ConsoleInputHandler.ReadLine(); if (answer.InsensitiveEquals("y")) { - Console.WriteLine(); - - Console.Write("Username: "); + logger.Information("Input Username:"); var username = ConsoleInputHandler.ReadLine(); - Console.Write("Password: "); + logger.Information("Input Password:"); var password = ConsoleInputHandler.ReadLine(); var a = new Account(username, password)