Skip to content
This repository has been archived by the owner on Nov 21, 2024. It is now read-only.

Commit

Permalink
Add a discord link to the dialog
Browse files Browse the repository at this point in the history
  • Loading branch information
zbee committed Nov 18, 2024
1 parent ab54d25 commit cbb9269
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion XIVSlothCombo/Window/Migration.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit cbb9269

Please sign in to comment.