Skip to content

Commit

Permalink
Remove Hydroconveyor
Browse files Browse the repository at this point in the history
Moving to Additional Logistics (AL)
  • Loading branch information
MEEPofFaith committed Oct 29, 2024
1 parent 918a3d7 commit 03970dc
Show file tree
Hide file tree
Showing 31 changed files with 0 additions and 28 deletions.
2 changes: 0 additions & 2 deletions assets/bundles/bundle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -205,8 +205,6 @@ block.prog-mats-unit-miner-depot.description = Constructs mining drones. Drones

## Distribution

block.prog-mats-floating-conveyor.name = Hydroconveyor
block.prog-mats-floating-conveyor.description = Transports items forward. Slightly faster than a standard conveyor. Can be placed in deep liquids.
block.prog-mats-burst-driver.name = Burst Driver
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.

Expand Down
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.
Diff not rendered.
Diff not rendered.
Diff not rendered.
8 changes: 0 additions & 8 deletions src/progressed/content/PMTechTree.java
Original file line number Diff line number Diff line change
Expand Up @@ -161,14 +161,6 @@ public static void load(){
node(smartDrill);
});

// Distribution
vanillaNode(armoredConveyor, () -> {
//Floating Conveyor
node(floatingConveyor, Seq.with(
new SectorComplete(SectorPresets.windsweptIslands)
));
});

vanillaNode(massDriver, () -> {
//Burst Driver
node(burstDriver, Seq.with(
Expand Down
18 changes: 0 additions & 18 deletions src/progressed/content/blocks/PMBlocks.java
Original file line number Diff line number Diff line change
Expand Up @@ -100,9 +100,6 @@ public class PMBlocks{
// endregion
// region Distribution

//Conveyor
floatingConveyor,

//Misc
burstDriver, sandDriver,

Expand Down Expand Up @@ -1083,21 +1080,6 @@ public void setStats(){
// endregion

// region Distribution
floatingConveyor = new CoveredConveyor("floating-conveyor"){{
requirements(Category.distribution, with(
Items.lead, 3,
Items.metaglass, 3,
Items.plastanium, 3,
PMItems.tenelium, 3
));
health = 15;
floating = true;
placeableLiquid = true;
speed = 0.06f;
displayedSpeed = 8.4f;
buildCostMultiplier = 0.25f;
}};

burstDriver = new BurstDriver("burst-driver"){{
requirements(Category.distribution, with(
Items.titanium, 275,
Expand Down

0 comments on commit 03970dc

Please sign in to comment.