Added all rule commands and dog command

This commit is contained in:
plane000
2018-05-21 11:34:33 +01:00
parent 49f966d6d3
commit d662ed6366
5 changed files with 86 additions and 18 deletions

View File

@@ -31,6 +31,7 @@ module.exports.loadCommands = function() {
addCommand('Version', 'version', undefined, 'version', 'returns the version', false, Commands.version);
addCommand('Ping', 'ping', undefined, 'ping', 'returns round trip to discords servers', false, Commands.ping);
addCommand('Cat', 'cat', undefined, 'cat', 'returns a picture of a cat', false, Commands.cat);
addCommand('Dog', 'dog', undefined, 'dog', 'returns a picture of a dog', false, Commands.dog);
//rule commands
addCommand('Rules', 'rules', undefined, 'rules', 'returns all the rules for the server the command was issued on', false, RuleCommands.rules);