mirror of
https://github.com/kolbytn/mindcraft.git
synced 2025-03-28 14:56:24 +01:00
fixed example
This commit is contained in:
parent
58d38af369
commit
883f73eef5
2 changed files with 3 additions and 4 deletions
|
@ -1,7 +1,6 @@
|
|||
{
|
||||
"debug_single_agent": {
|
||||
"goal": "Just stand at a place and don't do anything",
|
||||
"guidance": null,
|
||||
"initial_inventory": {},
|
||||
"type": "debug"
|
||||
},
|
||||
|
|
|
@ -173,16 +173,16 @@ export class Task {
|
|||
bot.chat(`/tp ${name} ${Math.floor(pos.x + xOffset)} ${pos.y + 3} ${Math.floor(pos.z + zOffset)}`);
|
||||
await new Promise((resolve) => setTimeout(resolve, 200));
|
||||
}
|
||||
|
||||
|
||||
if (this.data.agent_count && this.data.agent_count > 1) {
|
||||
// TODO wait for other bots to join
|
||||
await new Promise((resolve) => setTimeout(resolve, 10000));
|
||||
if (available_agents.length < this.data.agent_count) {
|
||||
console.log(`Missing ${this.data.agent_count - available_agents.length} bot(s).`);
|
||||
this.agent.cleanKill('Not all required players/bots are present in the world. Exiting.', 4);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
if (this.data.goal) {
|
||||
await executeCommand(this.agent, `!goal("${this.data.goal}")`);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue