A Discord Bot connected to your Pterodactyl API.
at main 13 lines 261 B view raw
1import { Events } from "discord.js"; 2import { Logger } from "../services/Logger.js"; 3import { config } from "dotenv"; 4config(); 5 6export default { 7 name: Events.Debug, 8 execute(debug) { 9 if (process.env.BOT_MODE === "debug") { 10 Logger.info(debug); 11 } 12 }, 13};