Compare commits

..

No commits in common. "38ac26b793f17c54a89273a9f101e0dc002f1b0b" and "7febc06f1e9d616e21bb38b37f77a6eca821dc90" have entirely different histories.

5 changed files with 10 additions and 12 deletions

4
package-lock.json generated
View file

@ -1,12 +1,12 @@
{
"name": "card-drop",
"version": "0.4.2",
"version": "0.4.1",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "card-drop",
"version": "0.4.2",
"version": "0.4.1",
"license": "MIT",
"dependencies": {
"@discordjs/rest": "^2.0.0",

View file

@ -1,6 +1,6 @@
{
"name": "card-drop",
"version": "0.4.2",
"version": "0.4.1",
"main": "./dist/bot.js",
"typings": "./dist",
"scripts": {

View file

@ -13,17 +13,15 @@ export default class Claim extends ButtonEvent {
const droppedBy = interaction.customId.split(" ")[3];
const userId = interaction.user.id;
await interaction.deferReply();
const claimed = await eClaim.FetchOneByClaimId(claimId);
if (claimed) {
await interaction.editReply("This card has already been claimed");
await interaction.reply("This card has already been claimed");
return;
}
if (claimId == CoreClient.ClaimId && userId != droppedBy) {
await interaction.editReply("The latest dropped card can only be claimed by the user who dropped it");
await interaction.reply("The latest dropped card can only be claimed by the user who dropped it");
return;
}
@ -42,6 +40,6 @@ export default class Claim extends ButtonEvent {
await claim.Save(eClaim, claim);
await interaction.editReply(`Card claimed by ${interaction.user}`);
await interaction.reply(`Card claimed by ${interaction.user}`);
}
}

View file

@ -27,12 +27,12 @@ export default class Reroll extends ButtonEvent {
return;
}
await interaction.deferReply();
try {
const image = readFileSync(path.join(process.env.DATA_DIR!, "cards", randomCard.card.path));
const imageFileName = randomCard.card.path.split("/").pop()!;
await interaction.deferReply();
const attachment = new AttachmentBuilder(image, { name: imageFileName });
const inventory = await Inventory.FetchOneByCardNumberAndUserId(interaction.user.id, randomCard.card.id);

View file

@ -35,9 +35,9 @@ export default class Drop extends Command {
return;
}
try {
await interaction.deferReply();
try {
const image = readFileSync(path.join(process.env.DATA_DIR!, "cards", randomCard.card.path));
const imageFileName = randomCard.card.path.split("/").pop()!;