Changed Minecraft Version tracking to manual input rather than auto-detecting

This commit is contained in:
Kallum Jones
2022-08-05 16:56:04 +01:00
parent 377b342564
commit b801d59352
9 changed files with 513 additions and 60 deletions

View File

@ -6,8 +6,8 @@ export default class InitCommand implements Subcommand {
registerCommand(program: Command) {
program.command("init")
.description("Initialises mod manager")
.action(() => {
Initialiser.initialise();
.action(async () => {
await Initialiser.initialise();
});
}
}