From 9394b14a38f9dba9b77791728cdc075b5a97ac53 Mon Sep 17 00:00:00 2001 From: Ske Date: Sun, 9 Feb 2020 22:35:16 +0100 Subject: [PATCH] Fix link in system created message --- PluralKit.Bot/Commands/System.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PluralKit.Bot/Commands/System.cs b/PluralKit.Bot/Commands/System.cs index dea2897d..6d478300 100644 --- a/PluralKit.Bot/Commands/System.cs +++ b/PluralKit.Bot/Commands/System.cs @@ -35,7 +35,7 @@ namespace PluralKit.Bot.Commands var system = await _data.CreateSystem(ctx.RemainderOrNull()); await _data.AddAccount(system, ctx.Author.Id); - await ctx.Reply($"{Emojis.Success} Your system has been created. Type `pk;system` to view it, and type `pk;help` for more information about commands you can use now. Now that you have that set up, check out [the getting started guide on setting up members and proxies](https://pluralkit.me/start)!"); + await ctx.Reply($"{Emojis.Success} Your system has been created. Type `pk;system` to view it, and type `pk;system help` for more information about commands you can use now. Now that you have that set up, check out the getting started guide on setting up members and proxies: "); } } }