Fixed payload routers not outputting to reconstructors

This commit is contained in:
Anuken
2020-08-22 09:40:10 -04:00
parent 29e0d4f2c2
commit a76da8e488

View File

@@ -85,7 +85,7 @@ public class PayloadConveyor extends Block{
int ntrns = 1 + size/2;
Tile next = tile.getNearby(Geometry.d4(rotation).x * ntrns, Geometry.d4(rotation).y * ntrns);
blocked = (next != null && next.solid()) || (this.next != null && (this.next.rotation + 2)%4 == rotation);
blocked = (next != null && next.solid() && !next.block().outputsPayload) || (this.next != null && (this.next.rotation + 2)%4 == rotation);
}
@Override