From 799d6fa30069fa36288e2e82c6a67cd45341397f Mon Sep 17 00:00:00 2001 From: spiral Date: Fri, 2 Jul 2021 17:59:27 -0400 Subject: [PATCH] Fix wording --- PluralKit.Bot/Commands/ImportExport.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/PluralKit.Bot/Commands/ImportExport.cs b/PluralKit.Bot/Commands/ImportExport.cs index 61a6dc24..17d757d5 100644 --- a/PluralKit.Bot/Commands/ImportExport.cs +++ b/PluralKit.Bot/Commands/ImportExport.cs @@ -120,7 +120,7 @@ namespace PluralKit.Bot issueStr += "\n- PluralKit does not support per-member system tags. Since you had multiple members with distinct tags, those tags will be applied to the members' *display names*/nicknames instead."; var msg = $"{issueStr}\n\nDo you want to proceed with the import?"; - if (!await ctx.PromptYesNo(msg, "Import")) + if (!await ctx.PromptYesNo(msg, "Proceed")) throw Errors.ImportCancelled; } @@ -163,4 +163,4 @@ namespace PluralKit.Bot } } } -} \ No newline at end of file +}