Remove restriction that the last drop can only be claimed by the user who dropped it

This commit is contained in:
Ethan Lane 2025-04-04 19:03:54 +01:00 committed by Vylpes
parent 5f64f15ffa
commit 98ba35b6c1
6 changed files with 0 additions and 15 deletions

View file

@ -1,7 +1,6 @@
import { ButtonInteraction } from "discord.js";
import { ButtonEvent } from "../type/buttonEvent";
import Inventory from "../database/entities/app/Inventory";
import { CoreClient } from "../client/client";
import { default as eClaim } from "../database/entities/app/Claim";
import AppLogger from "../client/appLogger";
import User from "../database/entities/app/User";
@ -43,11 +42,6 @@ export default class Claim extends ButtonEvent {
return;
}
if (claimId == CoreClient.ClaimId && userId != droppedBy) {
await interaction.channel.send(`${interaction.user}, The latest dropped card can only be claimed by the user who dropped it!`);
return;
}
let inventory = await Inventory.FetchOneByCardNumberAndUserId(userId, cardNumber);
if (!inventory) {