Inventory update, added the 'buy', 'shop', 'work', 'rank', and 'inventory' commands

This commit is contained in:
ION606
2022-05-12 17:38:08 +03:00
parent 6b0abdb65a
commit bb1db36473
9 changed files with 970 additions and 24 deletions
+8
View File
@@ -0,0 +1,8 @@
module.exports = {
name: 'Init',
async execute(bot, message, args, command, GuildModel, Discord, connect) {
if (!message.guild) { return console.log("NO GUILD"); }
const doc = new GuildModel( {id: message.guild.id });
await doc.save();
}
}