A Discord Bot connected to your Pterodactyl API.
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 10 lines 223 B view raw
1import { Events } from "discord.js"; 2import { Logger } from "../services/Logger.js"; 3 4// When the client is ready, run this code (only once) 5export default { 6 name: Events.Warn, 7 execute(warn) { 8 Logger.warn(warn); 9 }, 10};