mirror of
https://github.com/tobspr/shapez.io.git
synced 2025-06-13 13:04:03 +00:00
Fixing check failures
This commit is contained in:
parent
71409b62f4
commit
20cf392321
@ -245,6 +245,7 @@ export class MetaUndergroundBeltBuilding extends MetaBuilding {
|
||||
directions: [enumDirection.bottom],
|
||||
},
|
||||
]);
|
||||
return;
|
||||
}
|
||||
case "left": {
|
||||
entity.components.ItemAcceptor.setSlots([
|
||||
@ -253,6 +254,7 @@ export class MetaUndergroundBeltBuilding extends MetaBuilding {
|
||||
directions: [enumDirection.left],
|
||||
},
|
||||
]);
|
||||
return;
|
||||
}
|
||||
case "right": {
|
||||
entity.components.ItemAcceptor.setSlots([
|
||||
@ -261,6 +263,7 @@ export class MetaUndergroundBeltBuilding extends MetaBuilding {
|
||||
directions: [enumDirection.right],
|
||||
},
|
||||
]);
|
||||
return;
|
||||
}
|
||||
}
|
||||
return;
|
||||
@ -276,6 +279,7 @@ export class MetaUndergroundBeltBuilding extends MetaBuilding {
|
||||
directions: [enumDirection.bottom],
|
||||
},
|
||||
]);
|
||||
return;
|
||||
}
|
||||
case "left": {
|
||||
entity.components.ItemEjector.setSlots([
|
||||
@ -284,6 +288,7 @@ export class MetaUndergroundBeltBuilding extends MetaBuilding {
|
||||
directions: [enumDirection.left],
|
||||
},
|
||||
]);
|
||||
return;
|
||||
}
|
||||
case "right": {
|
||||
entity.components.ItemEjector.setSlots([
|
||||
@ -293,6 +298,7 @@ export class MetaUndergroundBeltBuilding extends MetaBuilding {
|
||||
},
|
||||
]);
|
||||
}
|
||||
return;
|
||||
}
|
||||
return;
|
||||
}
|
||||
|
@ -87,8 +87,8 @@ export function initMetaBuildingRegistry() {
|
||||
registerBuildingVariant(28, MetaUndergroundBeltBuilding, enumUndergroundBeltVariants.tier2, 0);
|
||||
registerBuildingVariant(29, MetaUndergroundBeltBuilding, enumUndergroundBeltVariants.tier2, 1);
|
||||
registerBuildingVariant(30, MetaUndergroundBeltBuilding, enumUndergroundBeltVariants.tier2Side, 0);
|
||||
registerBuildingVariant(31, MetaUndergroundBeltBuilding, enumUndergroundBeltVariants.tier2SideMirrored, 0);
|
||||
registerBuildingVariant(32, MetaUndergroundBeltBuilding, enumUndergroundBeltVariants.tier2Side, 1);
|
||||
registerBuildingVariant(31, MetaUndergroundBeltBuilding, enumUndergroundBeltVariants.tier2Side, 1);
|
||||
registerBuildingVariant(32, MetaUndergroundBeltBuilding, enumUndergroundBeltVariants.tier2SideMirrored, 0);
|
||||
registerBuildingVariant(33, MetaUndergroundBeltBuilding, enumUndergroundBeltVariants.tier2SideMirrored, 1);
|
||||
|
||||
// Hub
|
||||
|
Loading…
Reference in New Issue
Block a user