Applied Energistics 2

Applied Energistics 2

137M Downloads

Autocraft requests do not work when called by OpenComputers Adapter

arketec opened this issue ยท 2 comments

commented

Description

I have written a basic OpenComputers program to do some ME autocrafting.

`
local component = require('component')

local craftables = component.me_controller.getCraftables({
name = 'minecraft:stick'
})
if craftables.n >= 1 then
craftables= craftables[1]
local retval = craftables.request(1)
repeat os.sleep() until (retval.isDone())
print('done')
end`

It seems to work, as retval.isDone() becomes true, but the crafting request never actually is handled by the ME network, so no item is created

Environment

Windows 10 Professional

  • Minecraft Version: 1.12.2
  • AE2 Version: rv5-stable-11
  • Forge Version: 14.23.4.2705
    -Modpack: Foolcraft 3 Version 1.3.1
commented

mistake was user error

commented

the old 'when I'm contacting support, I solve the issue myself'