From b6f90b61c50bc8da3add21cec8c9eb4bbbdcc7d8 Mon Sep 17 00:00:00 2001 From: Dustin Pianalto Date: Mon, 25 Jan 2021 02:27:56 -0900 Subject: [PATCH] fix create request command --- internal/exts/requests/requests.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/exts/requests/requests.go b/internal/exts/requests/requests.go index 1fc713e..cd194e2 100644 --- a/internal/exts/requests/requests.go +++ b/internal/exts/requests/requests.go @@ -95,7 +95,7 @@ func requestCommandFunc(ctx disgoman.Context, args []string) { } _, err = ctx.Send(fmt.Sprintf("%s The admin have recieved your request.\n "+ "If you would like to close or add a comment to this request please reference ID `%v`", - ctx.Message.Author.Mention, request.ID, + ctx.Message.Author.Mention(), request.ID, )) if err != nil { discord_utils.SendErrorMessage(ctx, "There was an error sending the message. The request was created.", err)