Extend the pipette hack to work with belts and wires.

pull/470/head
Moppler 4 years ago
parent c111d88dc9
commit ae5c33abd2

@ -416,6 +416,14 @@ export class HUDBuildingPlacerLogic extends BaseHUDPart {
) {
continue checkVariant;
}
if (metaBuilding.id === "wire" && entity.layer !== enumLayer.wires) {
continue checkVariant;
}
if (metaBuilding.id === "belt" && entity.layer !== enumLayer.regular) {
continue checkVariant;
}
matches.push({ metaBuilding, variant });
}
}

Loading…
Cancel
Save