Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
Felris committed Oct 20, 2024
1 parent c35cc04 commit d41090a
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/lib/data/createables.ts
Original file line number Diff line number Diff line change
Expand Up @@ -726,10 +726,9 @@ const metamorphPets: Createable[] = [
customReq: async user => {
const [kcName, kcAmount] = await user.getKCByName('Corrupted gauntlet');
if (kcAmount < 1) {
return `You need to have at least 1 ${kcName} KC`;
} else {
return null;
return `You need to have at least 1 ${kcName} KC.`;
}
return null;
}
}
];
Expand Down

0 comments on commit d41090a

Please sign in to comment.