This commit is contained in:
simibubi 2024-10-09 18:38:00 +02:00
parent 7d1a3866ae
commit cafd877802
2 changed files with 2 additions and 2 deletions

View file

@ -636,7 +636,7 @@ public class TrainMapManager {
if (phase == PHASE_STRAIGHTS)
continue;
BlockPos origin = turn.tePositions.getFirst();
BlockPos origin = turn.bePositions.getFirst();
Map<Pair<Integer, Integer>, Double> rasterise = turn.rasterise();
for (boolean antialias : Iterate.falseAndTrue) {

View file

@ -680,7 +680,7 @@ public class BezierConnection implements Iterable<BezierConnection.Segment> {
public Map<Pair<Integer, Integer>, Double> rasterise() {
Map<Pair<Integer, Integer>, Double> yLevels = new HashMap<>();
BlockPos tePosition = tePositions.getFirst();
BlockPos tePosition = bePositions.getFirst();
Vec3 end1 = starts.getFirst()
.subtract(Vec3.atLowerCornerOf(tePosition))
.add(0, 3 / 16f, 0);