Fix caveat of 〃

This commit is contained in:
Patrick 'Quezler' Mounier
2020-01-06 17:51:12 +01:00
parent 9891e971ea
commit 58e5931b83

View File

@@ -126,7 +126,7 @@ public class CraterConveyor extends BaseConveyor{
// when near the center of the target tile...
if(entity.reload < 0.25f){
if(!(destination.block() instanceof CraterConveyor) && entity.link != tile.pos()){ // ...and if its not a crater conveyor, start unloading (everything)
if(!(destination.block() instanceof CraterConveyor) && (entity.link != tile.pos() || !isStart(tile))){ // ...and if its not a crater conveyor, start unloading (everything)
while(entity.items.total() > 0 && entity.dominant() != null && offloadDir(tile, entity.dominant())) entity.items.remove(entity.dominant(), 1);
}
}