blob: 66a351130a40030e1c6460c78dc14d952089612e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
/** **************************************
*
* Contribute: Plugin for PokeBot that redirects users to the proper place to contribute.
* Copyright (C) 2018 TheEdge, jtsshieh, Alee
*
* Licensed under the Open Software License version 3.0
*
* *************************************/
exports.run = (bot, msg) => {
msg.channel.send('Want to help the bot? Here you go: https://github.com/UniverseDevGroup/PokeBot.');
};
exports.conf = {
aliases: [],
guildOnly: true
};
exports.help = {
name: 'contribute',
description: 'Contributing to the bot.'
};
|