From a370c76ba4c2042e6f833cc59c8b91762855aa1b Mon Sep 17 00:00:00 2001 From: Dustin Pianalto Date: Tue, 22 Jun 2021 02:20:08 -0800 Subject: [PATCH] Add Auto Role Feature --- internal/exts/roles/roles.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/internal/exts/roles/roles.go b/internal/exts/roles/roles.go index 9c4323f..0200553 100644 --- a/internal/exts/roles/roles.go +++ b/internal/exts/roles/roles.go @@ -325,7 +325,7 @@ func makeAutoRoleCommandFunc(ctx disgoman.Context, args []string) { return } } - + _, _ = ctx.Send(fmt.Sprintf("%s will be added to all new memebers.", r.Name)) } var RemoveAutoRoleCommand = &disgoman.Command{ @@ -385,5 +385,5 @@ func removeAutoRoleCommandFunc(ctx disgoman.Context, args []string) { return } } - + _, _ = ctx.Send(fmt.Sprintf("%s will no longer be added to all new memebers.", r.Name)) }