feat: use emoji icons from Hangar

This commit is contained in:
Dragory 2023-07-01 13:22:04 +00:00
parent bafe8e3b55
commit 9cc88cfcb8
No known key found for this signature in database
2 changed files with 12 additions and 10 deletions

View file

@ -553,7 +553,7 @@ export function convertMSToDelayString(ms: number): string {
return result;
}
export function successMessage(str: string, emoji = "<:zep_check:650361014180904971>") {
export function successMessage(str: string, emoji = "<:zep_check:906897402101891093>") {
return emoji ? `${emoji} ${str}` : str;
}