Change misleading port input message

It's port 80 default in docker
This commit is contained in:
Cyberboss
2018-10-03 16:22:39 -04:00
parent 4828af61d6
commit d5009c368b
@@ -111,7 +111,7 @@ namespace Tgstation.Server.Host.Core
ushort? port = null;
do
{
Console.Write("Port (leave blank for default of 5000): ");
Console.Write("API Port (leave blank for default): ");
var portString = Console.ReadLine();
if (String.IsNullOrWhiteSpace(portString))
break;