Skip to content

Commit 03970dc

Browse files
committed
Remove Hydroconveyor
Moving to Additional Logistics (AL)
1 parent 918a3d7 commit 03970dc

31 files changed

+0
-28
lines changed

assets/bundles/bundle.properties

-2
Original file line numberDiff line numberDiff line change
@@ -205,8 +205,6 @@ block.prog-mats-unit-miner-depot.description = Constructs mining drones. Drones
205205

206206
## Distribution
207207

208-
block.prog-mats-floating-conveyor.name = Hydroconveyor
209-
block.prog-mats-floating-conveyor.description = Transports items forward. Slightly faster than a standard conveyor. Can be placed in deep liquids.
210208
block.prog-mats-burst-driver.name = Burst Driver
211209
block.prog-mats-burst-driver.description = Long-range item transport structure. Fires massive long bursts of items to other burst drivers.\nSingular items are lighter than a large amount bunched together, so it's range and speed are faster than mass drivers.
212210

Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

src/progressed/content/PMTechTree.java

-8
Original file line numberDiff line numberDiff line change
@@ -161,14 +161,6 @@ public static void load(){
161161
node(smartDrill);
162162
});
163163

164-
// Distribution
165-
vanillaNode(armoredConveyor, () -> {
166-
//Floating Conveyor
167-
node(floatingConveyor, Seq.with(
168-
new SectorComplete(SectorPresets.windsweptIslands)
169-
));
170-
});
171-
172164
vanillaNode(massDriver, () -> {
173165
//Burst Driver
174166
node(burstDriver, Seq.with(

src/progressed/content/blocks/PMBlocks.java

-18
Original file line numberDiff line numberDiff line change
@@ -100,9 +100,6 @@ public class PMBlocks{
100100
// endregion
101101
// region Distribution
102102

103-
//Conveyor
104-
floatingConveyor,
105-
106103
//Misc
107104
burstDriver, sandDriver,
108105

@@ -1083,21 +1080,6 @@ public void setStats(){
10831080
// endregion
10841081

10851082
// region Distribution
1086-
floatingConveyor = new CoveredConveyor("floating-conveyor"){{
1087-
requirements(Category.distribution, with(
1088-
Items.lead, 3,
1089-
Items.metaglass, 3,
1090-
Items.plastanium, 3,
1091-
PMItems.tenelium, 3
1092-
));
1093-
health = 15;
1094-
floating = true;
1095-
placeableLiquid = true;
1096-
speed = 0.06f;
1097-
displayedSpeed = 8.4f;
1098-
buildCostMultiplier = 0.25f;
1099-
}};
1100-
11011083
burstDriver = new BurstDriver("burst-driver"){{
11021084
requirements(Category.distribution, with(
11031085
Items.titanium, 275,

0 commit comments

Comments
 (0)