Add !java and alias !j

Added !java and alias !j as the issue "Some commands I want" says.
This commit is contained in:
Jon Doe 2022-06-05 17:31:27 -07:00 committed by GitHub
parent 6c3ae23e5e
commit bc8fa04547
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -79,6 +79,10 @@ We highly encourage asking authors that opted out to stop doing so.
await e.reply('https://polymc.org/wiki/development/build-instructions/');
},
'!java': async (c, e) => {
await e.reply('https://polymc.org/wiki/getting-started/installing-java/');
},
'!eta': async (c, e) => {
await e.reply('Sometime');
},
@ -160,5 +164,6 @@ export const aliases: { [a: string]: string } = {
'!cf': '!cursed',
'!diff': '!why',
'!migr': '!migrate',
'!j': '!java',
'!multimc': '!migrate',
};