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!"