From 395b387cbe4b50a3eacf82dbe062bafd68862de1 Mon Sep 17 00:00:00 2001 From: MaxRobinsonTheGreat Date: Tue, 7 Nov 2023 13:06:16 -0600 Subject: [PATCH] cleanup --- .gitignore | 1 - agent_code/template.js | 2 +- utils/mcdata.js | 2 +- 3 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 7b29b4c..f7aae85 100644 --- a/.gitignore +++ b/.gitignore @@ -3,6 +3,5 @@ node_modules/ package-lock.json temp.js scratch.js -# ignore eveything in agent_code except for 0.js agent_code/** !agent_code/template.js \ No newline at end of file diff --git a/agent_code/template.js b/agent_code/template.js index d7b062f..4fe1f61 100644 --- a/agent_code/template.js +++ b/agent_code/template.js @@ -1,6 +1,6 @@ import * as skills from '../utils/skills.js'; import * as world from '../utils/world.js'; - +// this file is currently unused export async function main(bot) { // agent's code goes here } diff --git a/utils/mcdata.js b/utils/mcdata.js index 2eb57e4..2b22787 100644 --- a/utils/mcdata.js +++ b/utils/mcdata.js @@ -3,7 +3,7 @@ import { createBot } from 'mineflayer'; import { pathfinder } from 'mineflayer-pathfinder'; import { plugin } from 'mineflayer-collectblock'; -const mc_version = '1.20.1' +const mc_version = '1.19.3' let mcdata = minecraftData(mc_version);