Make it even a little faster

This commit is contained in:
raoulvdberge
2017-02-06 20:35:12 +01:00
parent 09b9e5b4f4
commit bd220b5832

View File

@@ -56,13 +56,13 @@ public class SoldererRecipePrintedProcessor implements ISoldererRecipe {
public int getDuration() { public int getDuration() {
switch (type) { switch (type) {
case ItemProcessor.TYPE_PRINTED_BASIC: case ItemProcessor.TYPE_PRINTED_BASIC:
return 100 * (fullBlock ? 7 : 1); return 100 * (fullBlock ? 6 : 1);
case ItemProcessor.TYPE_PRINTED_IMPROVED: case ItemProcessor.TYPE_PRINTED_IMPROVED:
return 150 * (fullBlock ? 7 : 1); return 150 * (fullBlock ? 6 : 1);
case ItemProcessor.TYPE_PRINTED_ADVANCED: case ItemProcessor.TYPE_PRINTED_ADVANCED:
return 200 * (fullBlock ? 7 : 1); return 200 * (fullBlock ? 6 : 1);
case ItemProcessor.TYPE_PRINTED_SILICON: case ItemProcessor.TYPE_PRINTED_SILICON:
return 90 * (fullBlock ? 7 : 1); return 90 * (fullBlock ? 6 : 1);
default: default:
return 0; return 0;
} }