add help and list of talents
This commit is contained in:
13
src/commands/talents.js
Normal file
13
src/commands/talents.js
Normal file
@ -0,0 +1,13 @@
|
||||
const globals = require('../globals')
|
||||
module.exports = async (message, args, db) => {
|
||||
|
||||
let reply = 'Diese Talentnamen kenne ich:\n```';
|
||||
|
||||
for (let i in globals.Talente) {
|
||||
reply += '+ ' +globals.Talente[i].id + '\n'
|
||||
}
|
||||
reply += '```'
|
||||
message.author.send(
|
||||
reply
|
||||
);
|
||||
};
|
Reference in New Issue
Block a user