From 50d335bdf50b5dac525af22220b25627e9667712 Mon Sep 17 00:00:00 2001 From: jvyden Date: Thu, 18 Jan 2024 20:19:04 -0500 Subject: [PATCH] Improve "AutoDiscover" won't be used text --- Refresher/UI/PatchForm.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Refresher/UI/PatchForm.cs b/Refresher/UI/PatchForm.cs index 8ca9d35..1da8a36 100644 --- a/Refresher/UI/PatchForm.cs +++ b/Refresher/UI/PatchForm.cs @@ -208,7 +208,9 @@ private void Patch(object? sender, EventArgs e) this.AutoDiscover(this, EventArgs.Empty); break; case DialogResult.No: - MessageBox.Show("Okay, AutoDiscover won't be used. If you have issues with this patch, try using it next time."); + MessageBox.Show("Okay, AutoDiscover won't be used. If you have issues with this patch, try using it next time.\n" + + "You can also try clicking 'Revert EBOOT' before patching to undo any server-specific patches that may cause issues.\n\n" + + "Click OK to proceed with patching."); break; case DialogResult.Cancel: return;