1
0
mirror of https://github.com/tobspr/shapez.io.git synced 2025-06-07 01:54:10 +00:00

Fix crash in potato mode

This commit is contained in:
tobspr 2020-09-19 10:45:55 +02:00
parent 47443058e0
commit ed206363f2

View File

@ -1233,9 +1233,10 @@ export class BeltPath extends BasicSerializableObject {
this.entityPath.length - 1
);
const medianBelt = this.entityPath[medianBeltIndex];
const beltComp = medianBelt.components.Belt;
const staticComp = medianBelt.components.StaticMapEntity;
const centerPosLocal = medianBelt.components.Belt.transformBeltToLocalSpace(
this.entityPath.length % 2 === 0 ? 1 : 0.5
const centerPosLocal = beltComp.transformBeltToLocalSpace(
this.entityPath.length % 2 === 0 ? beltComp.getEffectiveLengthTiles() : 0.5
);
const centerPos = staticComp.localTileToWorld(centerPosLocal).toWorldSpaceCenterOfTile();