From cbb92698731ce8a3cb758cc7c9c795af80f17ffe Mon Sep 17 00:00:00 2001 From: Ethan Henderson Date: Mon, 18 Nov 2024 07:11:57 -0700 Subject: [PATCH] Add a discord link to the dialog --- XIVSlothCombo/Window/Migration.cs | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/XIVSlothCombo/Window/Migration.cs b/XIVSlothCombo/Window/Migration.cs index f288f0724..5ce1cebe8 100644 --- a/XIVSlothCombo/Window/Migration.cs +++ b/XIVSlothCombo/Window/Migration.cs @@ -93,7 +93,23 @@ public override void Draw() CenterText("XIVSlothCombo is now WrathCombo!"); CenterText( "Please follow the steps below to migrate to WrathCombo to continue receiving updates."); - //CenterDisabledText("(WrathCombo will automatically import your settings)"); + CenterButtonAndTextAndButton( + "Join our Discord", + "for any questions or issues", + () => + { + Process.Start(new ProcessStartInfo() + { + FileName = "https://discord.gg/Zzrcc8kmvy", + UseShellExecute = true + }); + }, + "(ask in #combo-general)", + () => Process.Start(new ProcessStartInfo() + { + FileName = "https://discord.com/channels/1001823907193552978/1271175781569003590", + UseShellExecute = true + })); #endregion