Simp-O-Matic

Dumb Discord bot in TS.
git clone git://git.knutsen.co/Simp-O-Matic
Log | Files | Refs | README | LICENSE

emojis.ts (167B)


1
2
3
4
5
6
export default (homescope: HomeScope) => {
	const { message } = homescope;
	message.channel.send(
		message.guild.emojis.cache.map(x => x.toString()).join(' ')
	);
};