Merge pull request #9 from JonDoeBeep/patch-1

Add !java and alias !j
This commit is contained in:
Ryan Cao 2022-06-06 08:38:01 +08:00 committed by GitHub
commit e0374bea36
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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