add .pomoc stub

This commit is contained in:
2021-09-28 22:34:10 +02:00
parent 9719d5d5e5
commit d2847d98e6
3 changed files with 19 additions and 2 deletions

16
src/cmds/pomoc.js Normal file
View File

@@ -0,0 +1,16 @@
module.exports = {
name: 'pomoc',
execute(cl, msg) {
const embed = {
color: cl.cfg.hexBlue,
timestamp: new Date(),
footer: {
text: `Komenda wywołana przez ${msg.author.tag}`,
icon_url: cl.cfg.iconurl,
},
title: 'Pomoc!',
description: cl.cfg.embedFields.pomocDesc,
};
msg.channel.send({ embeds: [embed] });
},
};