Parent Directory
|
Revision Log
Fixed issues
1 | import { Emoji } from "discord.js"; |
2 | import DiscordClient from "../client/Client"; |
3 | |
4 | function globalConfig() { |
5 | return DiscordClient.client.config.props.global; |
6 | } |
7 | |
8 | export async function fetchEmoji(name: string) { |
9 | return await findEmoji(e => e.name === name); |
10 | } |
11 | |
12 | export async function findEmoji(callback: (e: Emoji) => boolean) { |
13 | return await DiscordClient.client.guilds.cache.find(g => g.id === globalConfig().id)!.emojis.cache.find(callback); |
14 | } |
[email protected] | ViewVC Help |
Powered by ViewVC 1.1.26 |