From 59540efda4bfa5b8d6471fdb1c270bfcb268d54e Mon Sep 17 00:00:00 2001 From: EvolutionX Date: Thu, 28 Jul 2022 16:26:00 +0530 Subject: [PATCH] fix: remove empty events option causing git errors --- templates/javascript/src/index.js | 2 +- templates/typescript/src/index.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/templates/javascript/src/index.js b/templates/javascript/src/index.js index 49fc280..c14636c 100644 --- a/templates/javascript/src/index.js +++ b/templates/javascript/src/index.js @@ -14,7 +14,7 @@ Sern.init({ client, defaultPrefix: '!', // removing defaultPrefix will shut down text commands commands: 'src/commands', - events: '', // join discord server to learn how to load events! + // events: 'src/events' (optional), }); client.login(); diff --git a/templates/typescript/src/index.ts b/templates/typescript/src/index.ts index ee7720f..28d2783 100644 --- a/templates/typescript/src/index.ts +++ b/templates/typescript/src/index.ts @@ -14,7 +14,7 @@ Sern.init({ client, defaultPrefix: '!', // removing defaultPrefix will shut down text commands commands: 'dist/commands', - events: '', // join discord server to learn how to load events! + // events: 'dist/events' (optional), }); client.login();