Removed hellcase time message
All checks were successful
Dat_Boi upload to portainer / Deploy (push) Successful in 2m17s

This commit is contained in:
2025-09-02 13:59:28 +02:00
parent e196bb7115
commit d1c3118e2d

View File

@@ -0,0 +1,28 @@
const { MessageEmbed } = require("discord.js");
const ee = require("../botconfig/embed.json");
const RAPPEL_CHANNEL_ID = "1296051297262370866";
module.exports = {
name: "Hellcase",
time: "21:30",
run: async (client) => {
try {
client.channels.fetch(RAPPEL_CHANNEL_ID)
.then(channel => channel.send({
embeds: [
new MessageEmbed()
.setColor(ee.color)
.setFooter({ text: ee.footertext, iconURL: ee.footericon })
.setTitle(`Rappel : Caisse gratuite Hellcase`)
.setDescription("[Hellcase](https://hellcase.com/)")
],
})
);
} catch (e) {
console.log(String(e.stack).bgRed);
}
},
};
/** Template by Tomato#6966 | https://github.com/Tomato6966/Discord-Js-Handler-Template */