Add !s as an alias for !snippets

cshd
Dragory 2020-10-21 22:21:46 +03:00
parent db40c39dfa
commit ddb759f6ae
No known key found for this signature in database
GPG Key ID: 5F387BA66DF8AAC1
1 changed files with 2 additions and 0 deletions

View File

@ -133,5 +133,7 @@ module.exports = ({ bot, knex, config, commands }) => {
triggers.sort(); triggers.sort();
utils.postSystemMessageWithFallback(msg.channel, thread, `Available snippets (prefix ${config.snippetPrefix}):\n${triggers.join(", ")}`); utils.postSystemMessageWithFallback(msg.channel, thread, `Available snippets (prefix ${config.snippetPrefix}):\n${triggers.join(", ")}`);
}, {
aliases: ["s"]
}); });
}; };