make solderer save state, tweak duration for recipes and add sided inv
This commit is contained in:
@@ -36,6 +36,6 @@ public class SoldererRecipeDrive implements ISoldererRecipe
|
||||
@Override
|
||||
public int getDuration()
|
||||
{
|
||||
return 400;
|
||||
return 500;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -44,6 +44,18 @@ public class SoldererRecipePrintedProcessor implements ISoldererRecipe
|
||||
@Override
|
||||
public int getDuration()
|
||||
{
|
||||
return 100;
|
||||
switch (type)
|
||||
{
|
||||
case ItemProcessor.TYPE_PRINTED_BASIC:
|
||||
return 100;
|
||||
case ItemProcessor.TYPE_PRINTED_IMPROVED:
|
||||
return 150;
|
||||
case ItemProcessor.TYPE_PRINTED_ADVANCED:
|
||||
return 200;
|
||||
case ItemProcessor.TYPE_PRINTED_SILICON:
|
||||
return 90;
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -50,6 +50,16 @@ public class SoldererRecipeProcessor implements ISoldererRecipe
|
||||
@Override
|
||||
public int getDuration()
|
||||
{
|
||||
return 200;
|
||||
switch (type)
|
||||
{
|
||||
case ItemProcessor.TYPE_BASIC:
|
||||
return 250;
|
||||
case ItemProcessor.TYPE_IMPROVED:
|
||||
return 300;
|
||||
case ItemProcessor.TYPE_ADVANCED:
|
||||
return 350;
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user