MineDojo / Voyager

An Open-Ended Embodied Agent with Large Language Models
https://voyager.minedojo.org/
MIT License
5.34k stars 491 forks source link

Constant empty inventory #146

Closed Rai220 closed 5 months ago

Rai220 commented 5 months ago

Good day, dear friends! Please help me with this issue:

My bot continuously collecting wood, but every time I see empty inventory. I am using local instance of Minecraft with correct version of build and mods.

Log part:

    if (!logBlock) {
        bot.chat("No wood log found nearby.");
        return;
    }

    // Mine the wood log block
    await mineBlock(bot, logBlock.name, 1);
    bot.chat("Wood log mined.");

...
Wood log mined.
...

Inventory (0/36): Empty

That repeats every time. I think inventory storing is not works for me. Please help.

Rai220 commented 5 months ago

I just need to start game in survival mode...