From bc8fa04547666cc299c1f08f1b944d18693caf0f Mon Sep 17 00:00:00 2001 From: Jon Doe <56412184+JonDoeBeep@users.noreply.github.com> Date: Sun, 5 Jun 2022 17:31:27 -0700 Subject: [PATCH] Add !java and alias !j Added !java and alias !j as the issue "Some commands I want" says. --- commands.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/commands.ts b/commands.ts index 3784650..d992fbc 100644 --- a/commands.ts +++ b/commands.ts @@ -78,6 +78,10 @@ We highly encourage asking authors that opted out to stop doing so. '!build': async (c, e) => { 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', };