Revert "Beautifying"

This reverts commit 3a3bb89635
This commit is contained in:
2023-04-24 22:02:52 +00:00
parent 6dbb92241a
commit 510f6afd23
40 changed files with 3329 additions and 3951 deletions

View File

@@ -1,10 +1,10 @@
module.exports = {
name: "login",
description: "Logs the bot in.",
type: "login",
name: 'login',
description: 'Logs the bot in.',
type: 'login',
async execute() {
const bot = require("../../index.js");
console.log("Logged in as " + bot.username + "!");
}
};
async execute() {
const bot = require ('../../index.js');
console.log('Logged in as ' + bot.username + '!')
}
}