From 87676c2045ed913760c59714a6b186eaeaa13c17 Mon Sep 17 00:00:00 2001 From: spiral Date: Wed, 25 Aug 2021 12:33:24 -0400 Subject: [PATCH] fix: show correct command suggestion to edit server tag --- PluralKit.Bot/Commands/SystemEdit.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PluralKit.Bot/Commands/SystemEdit.cs b/PluralKit.Bot/Commands/SystemEdit.cs index 3a337f3e..508028cd 100644 --- a/PluralKit.Bot/Commands/SystemEdit.cs +++ b/PluralKit.Bot/Commands/SystemEdit.cs @@ -182,7 +182,7 @@ namespace PluralKit.Bot if (!ctx.MessageContext.TagEnabled) msg += ", but it is currently **disabled**. To re-enable it, type `pk;s servertag -enable`."; else - msg += ". To change it, type `pk;s tag `. To clear it, type `pk;s tag -clear`."; + msg += ". To change it, type `pk;s servertag `. To clear it, type `pk;s servertag -clear`."; await ctx.Reply(msg); return;