How can I set a chest on a specific place on the conveyor? I mean the operator comes to the conveyor with the box and I would like him to put it on the conveyor at x = 5. I wrote something like this:
treenode adres = token.MergeAdres;
Object adresitem = adres.last;
adresitem.location.x = 5;
but it still sets the chest at the beginning of the conveyor. How can i fix this?