Skip to content

Commit

Permalink
Making extractor Mk1-Mk2 useful
Browse files Browse the repository at this point in the history
  • Loading branch information
TimeConqueror committed Jul 21, 2024
1 parent 318c878 commit 0ec7f30
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -140,11 +140,11 @@ public LogisticsModule getSubModule(int slot) {
}

protected int ticksToAction() {
return 100;
return 20;
}

protected int itemsToExtract() {
return 1;
return 5;
}

protected int neededEnergy() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,11 @@ protected int ticksToAction() {
return 20;
}

@Override
protected int itemsToExtract() {
return 32;
}

@Override
protected int neededEnergy() {
return 8;
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/logisticspipes/modules/ModuleExtractor.java
Original file line number Diff line number Diff line change
Expand Up @@ -54,11 +54,11 @@ public class ModuleExtractor extends LogisticsSneakyDirectionModule
public ModuleExtractor() {}

protected int ticksToAction() {
return 100;
return 20;
}

protected int itemsToExtract() {
return 1;
return 5;
}

protected int neededEnergy() {
Expand Down
5 changes: 5 additions & 0 deletions src/main/java/logisticspipes/modules/ModuleExtractorMk2.java
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,11 @@ protected int ticksToAction() {
return 20;
}

@Override
protected int itemsToExtract() {
return 32;
}

@Override
protected int neededEnergy() {
return 7;
Expand Down

0 comments on commit 0ec7f30

Please sign in to comment.