2021-07-20 20:32:16 +00:00
|
|
|
const functions = require('../functions.js');
|
2021-07-20 20:23:30 +00:00
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
name: 'roll',
|
|
|
|
description: 'Add a phrase to the .joint command',
|
2021-07-20 20:24:24 +00:00
|
|
|
usage: '<phrase to save>',
|
2021-07-20 20:23:30 +00:00
|
|
|
execute(message, file) {
|
2021-07-24 19:44:58 +00:00
|
|
|
functions.uploadPotPhrase(file.name);
|
|
|
|
message.channel.send('"' + file.name + '" has been added to the list');
|
2021-07-20 20:23:30 +00:00
|
|
|
}
|
|
|
|
}
|