card-drop/src/constants/ErrorMessages.ts
Ethan Lane 2963850de8
Some checks failed
Test / build (push) Failing after 9s
WIP: Start of creating multidrop command
2024-10-04 17:58:34 +01:00

7 lines
No EOL
472 B
TypeScript

export default class ErrorMessages {
public static readonly BotSyncing = "Bot is currently syncing, please wait until its done.";
public static readonly SafeMode = "Safe Mode has been activated, please resync to continue.";
public static readonly UnableToFetchCard = "Unable to fetch card, please try again.";
public static readonly NotEnoughCurrency = (need: number, have: number) => `Not enough currency! You need ${need} currency, you have ${have}!`;
}