fix: remove empty events option causing git errors

This commit is contained in:
EvolutionX
2022-07-28 16:26:00 +05:30
parent f8368e3e62
commit 59540efda4
2 changed files with 2 additions and 2 deletions

View File

@@ -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();

View File

@@ -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();