This commit is contained in:
Anuken
2020-09-14 16:56:32 -04:00
parent b603409f74
commit 757e0fbda0
2 changed files with 4 additions and 2 deletions
@@ -41,6 +41,8 @@ public class PayloadRouter extends PayloadConveyor{
do{
rotation = (rotation + 1) % 4;
onProximityUpdate();
//this condition intentionally uses "accept from itself" conditions, because payload conveyors only accept during the start
//"accept from self" conditions are for dropped payloads and are less restrictive
}while((blocked || next == null || !next.acceptPayload(next, item)) && ++rotations < 4);
}
}