mindcraft/agent_code/template.js
2023-11-12 13:57:22 -06:00

8 lines
270 B
JavaScript

import * as skills from '../utils/skills.js';
import * as world from '../utils/world.js';
import Vec3 from 'vec3';
export async function main(bot) {
/* CODE HERE */
return true; // potentially redundant return statement, in case agent doesn't return anything
}