Fixed /giftvbucks command

This commit is contained in:
Burlone
2024-11-03 22:19:29 +01:00
parent 6f4cf88da0
commit ef50ac917f
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -86,4 +86,4 @@
"bEnableBlockbusterRiskyEvent": false,
"bEnableCubeLake": false,
"cubeLakeDate": "2020-01-01T00:00:00.000Z"
}
}
+2 -2
View File
@@ -1,4 +1,4 @@
const { SlashCommandBuilder, EmbedBuilder } = require("discord.js");
const { SlashCommandBuilder, MessageEmbed } = require("discord.js");
const Users = require("../../../model/user.js");
const Profiles = require("../../../model/profiles.js");
@@ -73,7 +73,7 @@ module.exports = {
const currentuser = await Profiles.findOne({ accountId: sender?.accountId });
const embed = new EmbedBuilder()
const embed = new MessageEmbed()
.setTitle("Gift Sent!")
.setDescription(`Gifted **${vbucks} V-Bucks** to **${recieveuser.username}**`)
.setThumbnail("https://i.imgur.com/yLbihQa.png")