Skip to content

Commit

Permalink
up speed oredict bus
Browse files Browse the repository at this point in the history
  • Loading branch information
aagrishankov committed Jan 3, 2021
1 parent f83fa3f commit 299ee4b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/scala/extracells/part/PartOreDictExporter.java
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ private Predicate<String> filterToPredicate(String filter) {
}

public boolean doWork(int rate, int ticksSinceLastCall) {
int amount = Math.min(rate * ticksSinceLastCall, 64);
int amount = Math.min(rate * ticksSinceLastCall * 2048, 64);
IStorageGrid storage = getStorageGrid();
assert storage != null;
IMEMonitor<IAEItemStack> inv = storage.getItemInventory();
Expand Down

0 comments on commit 299ee4b

Please sign in to comment.