latest push

This commit is contained in:
John Facey
2022-07-27 17:39:58 -05:00
parent 9cac9a1735
commit 37f18aa71d
4 changed files with 20 additions and 2 deletions

17
commands/calc.js Normal file
View File

@@ -0,0 +1,17 @@
var libFlayer = require("../libFlayer.js");
module.exports = {
name: 'calc',
description: 'Calc',
execute(message, args) {
try {
if (args.length < 3) {
}
//var stringArgs = evaluate(args.join(" "));
//message.reply(`Answer: ${stringArgs}`);
} catch (err) {
message.reply(err.toString());
}
}
};