/* * Copyright (C) 2024 Emilia Luminé * This file is a part of the Shamestech bot. * * The Shamestech bot is free software: you can redistribute it and/or modify it * under the terms of the European Union Public License as published by * by the European Union, only the version 1.2 of the License. * * The Shamestech bot is distributed in the hope that it will be useful * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * European Union Public License for more details. * * You should have received a copy of the European Union Public License, If not * see */ const util = require('node:util'); module.exports = { name: 'reload', hidden: true, async execute(message, args) { if (message.author.id !== "1425229394703683614") { return; } globalThis.commandsReload(); globalThis.reloadEvents(); return await message.reply({ content: `meow` }); } }