Update Noblox to 6.0.2

This commit is contained in:
2024-08-27 23:11:28 -05:00
parent d1066e2737
commit 37e691eebf
4 changed files with 8 additions and 24 deletions

@ -1,7 +1,7 @@
const { SlashCommandBuilder } = require('@discordjs/builders');
const noblox = require("noblox.js");
const { cookies, commands, gamePlaces } = require("../config/config.js");
const { getAssetInfo, buyModel, getCurrentUser, validateMapAsset, getValidationMessage } = require("../common.js");
const { getAssetInfo, buyModel, validateMapAsset, getValidationMessage } = require("../common.js");
/**
* @param {import('discord.js').ChatInputCommandInteraction} interaction
@ -20,7 +20,8 @@ async function execute(interaction) {
let alreadyOwned;
try {
// Check if the bot already owns this asset
alreadyOwned = await noblox.getOwnership(await getCurrentUser(), id, "Asset");
const robloxUser = await noblox.getAuthenticatedUser();
alreadyOwned = await noblox.getOwnership(robloxUser.id, id, "Asset");
} catch (error) {
if (error.message !== "400 The specified Asset does not exist!") {
throw error;