Fix linting issues
All checks were successful
Test / build (push) Successful in 15s

This commit is contained in:
Ethan Lane 2024-10-11 17:54:40 +01:00
parent f7de57cf5d
commit 887738c0c6

View file

@ -15,15 +15,15 @@ export default class Multidrop extends ButtonEvent {
const action = interaction.customId.split(" ")[1]; const action = interaction.customId.split(" ")[1];
switch (action) { switch (action) {
case "keep": case "keep":
await this.Keep(interaction); await this.Keep(interaction);
break; break;
case "sacrifice": case "sacrifice":
await this.Sacrifice(interaction); await this.Sacrifice(interaction);
break; break;
default: default:
await interaction.reply("Invalid action"); await interaction.reply("Invalid action");
AppLogger.LogError("Button/Multidrop", `Invalid action, ${action}`); AppLogger.LogError("Button/Multidrop", `Invalid action, ${action}`);
} }
} }