mirror of
https://github.com/ApfelTeeSaft/Reload-Backend.git
synced 2026-08-26 19:33:26 +00:00
Skibidi Bug
This commit is contained in:
@@ -1,11 +1,12 @@
|
||||
const { EmbedBuilder, SlashCommandBuilder } = require("discord.js");
|
||||
const { MessageBuilder } = require("discord.js");
|
||||
const Users = require('../../../model/user.js');
|
||||
const Profiles = require('../../../model/profiles.js');
|
||||
|
||||
module.exports = {
|
||||
data: new SlashCommandBuilder()
|
||||
.setName('claimvbucks')
|
||||
.setDescription('Claim your daily 250 V-Bucks'),
|
||||
commandInfo: {
|
||||
name: "claimvbucks",
|
||||
description: "Claim your daily 250 V-Bucks"
|
||||
},
|
||||
async execute(interaction) {
|
||||
try {
|
||||
await interaction.deferReply({ ephemeral: true });
|
||||
@@ -34,7 +35,7 @@ module.exports = {
|
||||
}
|
||||
);
|
||||
|
||||
const embed = new EmbedBuilder()
|
||||
const embed = new MessageBuilder()
|
||||
.setTitle("Daily V-Bucks Claimed!")
|
||||
.setDescription(`You have claimed your daily 250 V-Bucks!`)
|
||||
.setThumbnail("https://media.discordapp.net/attachments/1134514551606476810/1152156761793511425/250vbucks.png")
|
||||
|
||||
Reference in New Issue
Block a user