From a5c52ab4834c406ff54ee3e0a0cd740ddc96a27b Mon Sep 17 00:00:00 2001 From: jacoobes Date: Sat, 29 Jan 2022 08:22:27 -0600 Subject: [PATCH] made commandResult private --- src/handler/sern/sern.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/handler/sern/sern.ts b/src/handler/sern/sern.ts index 42ad253..83080fc 100644 --- a/src/handler/sern/sern.ts +++ b/src/handler/sern/sern.ts @@ -35,7 +35,7 @@ export namespace Sern { }) } - async commandResult(module: Sern.Module | undefined, message: Message) : Promise { + private async commandResult(module: Sern.Module | undefined, message: Message) : Promise { if (module === undefined) return "Unknown Command"; if (module.visibility === "private" && message.guildId !== this.privateServerId) { return "This command is not availible in this guild!"