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

@ -4,7 +4,7 @@ const fs = require('node:fs');
const noblox = require("noblox.js");
const axios = require("axios").default;
const { submissions, commands, cookies } = require("../config/config.js");
const { getAssetInfo, getCurrentUser, SubmissionColumnsString, createSubmissionLine, getSubmissionLine, validateMapAsset, getValidationMessage } = require("../common.js");
const { getAssetInfo, SubmissionColumnsString, createSubmissionLine, getSubmissionLine, validateMapAsset, getValidationMessage } = require("../common.js");
async function robloxUserFromDiscord(id) {
if (isNaN(id)) return undefined;
@ -52,7 +52,8 @@ async function execute(interaction) {
try {
// Check that the bot owns this model
if (!(await noblox.getOwnership(await getCurrentUser(), id, "Asset"))) {
const robloxUser = await noblox.getAuthenticatedUser();
if (!(await noblox.getOwnership(robloxUser.id, id, "Asset"))) {
const msg = `🚫 The ${game} maptest bot's inventory does not contain this asset (id: \`${id}\`). You must use the /take command first.`;
await interaction.editReply(msg);
return;