remove unnecessary changes

This commit is contained in:
Isadora White 2025-05-23 12:02:23 -07:00
parent b55f92800f
commit fa02028b8b
4 changed files with 1 additions and 18 deletions

View file

@ -198,7 +198,6 @@ export class Agent {
if (!this.task || !this.task.agent_names) { if (!this.task || !this.task.agent_names) {
return; return;
} }
console.log(this.task.agent_names)
const missingPlayers = this.task.agent_names.filter(name => !this.bot.players[name]); const missingPlayers = this.task.agent_names.filter(name => !this.bot.players[name]);
if (missingPlayers.length > 0) { if (missingPlayers.length > 0) {

View file

@ -1,16 +0,0 @@
import * as mc from '../src/utils/mcdata.js';
import minecraftData from 'minecraft-data';
const mc_version = '1.21.1'
const mcdata = minecraftData(mc_version);
console.log(mcdata.recipes[mc.getItemId('white_dye')])
console.log(mcdata.recipes[mc.getItemId('oak_planks')])
console.log(mcdata.recipes[mc.getItemId('wooden_pickaxe')])
if (mcdata.recipes['minecraft:white_dye']) {
console.log('Recipe found')
}
const target_item = 'white_dye'
const quantity = 1
const curr_inventory = {}
let craftingPlan = mc.getDetailedCraftingPlan(target_item, quantity, curr_inventory)
console.log(craftingPlan)