From c460f2d9567cfe363f87e1cdecbfee5dfc38a975 Mon Sep 17 00:00:00 2001 From: Joshua Goins Date: Wed, 16 Mar 2022 10:02:28 -0400 Subject: [PATCH] Fill out url field on official Square Enix lobbies This actually does nothing functionally, since the game fills out the lobby URL for you on launch - but it does make the settings look a bit nicer. --- src/settingswindow.cpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/settingswindow.cpp b/src/settingswindow.cpp index 4793cd2..0b099b7 100644 --- a/src/settingswindow.cpp +++ b/src/settingswindow.cpp @@ -486,7 +486,11 @@ void SettingsWindow::reloadControls() { encryptArgumentsBox->setChecked(profile.encryptArguments); serverType->setCurrentIndex(profile.isSapphire ? 1 : 0); lobbyServerURL->setEnabled(profile.isSapphire); - lobbyServerURL->setText(profile.lobbyURL); + if(profile.isSapphire) { + lobbyServerURL->setText(profile.lobbyURL); + } else { + lobbyServerURL->setText("neolobby0X.ffxiv.com"); + } rememberUsernameBox->setChecked(profile.rememberUsername); rememberPasswordBox->setChecked(profile.rememberPassword); gameLicenseBox->setCurrentIndex((int)profile.license);