Fixed #4420 / Fixed #4418 / Fixed #4416

This commit is contained in:
Anuken
2021-01-23 10:33:06 -05:00
parent 792fdef95d
commit ad4650f408
4 changed files with 5 additions and 4 deletions
@@ -83,7 +83,7 @@ public class Conveyor extends Block implements Autotiler{
@Override
public Block getReplacement(BuildPlan req, Seq<BuildPlan> requests){
Boolf<Point2> cont = p -> requests.contains(o -> o.x == req.x + p.x && o.y == req.y + p.y && o.rotation == req.rotation && (req.block instanceof Conveyor || req.block instanceof Junction));
Boolf<Point2> cont = p -> requests.contains(o -> o.x == req.x + p.x && o.y == req.y + p.y && (req.block instanceof Conveyor || req.block instanceof Junction));
return cont.get(Geometry.d4(req.rotation)) &&
cont.get(Geometry.d4(req.rotation - 2)) &&
req.tile() != null &&