Skip to content

Commit

Permalink
Lint
Browse files Browse the repository at this point in the history
  • Loading branch information
TastyPumPum committed Feb 27, 2024
1 parent af5f28f commit 4919a6b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mahoji/lib/abstracted_commands/chargeGloriesCommand.ts
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ export async function unchargeGloriesCommand(user: MUser, channelID: string, qua

if (!quantity) quantity = Math.floor(max);
if (quantity > max) quantity = max;
if (quantity === 0) return `You don't have any Amulet of glory (6) to uncharge.`;
if (quantity === 0) return "You don't have any Amulet of glory (6) to uncharge.";

const duration = quantity * unchargeGloriesTime;

Expand Down

0 comments on commit 4919a6b

Please sign in to comment.