lpg chemplant recipe

This commit is contained in:
Adam 2021-10-12 20:30:52 +02:00 committed by GitHub
parent 850d35f573
commit ab7f2c6f23
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1899,6 +1899,9 @@ public class MachineRecipes {
case STEAM:
input[0] = new FluidStack(1000, FluidType.WATER);
break;
case LPG:
input[0] = new FluidStack(2000, FluidType.PETROLEUM);
break;
case BP_BIOFUEL:
input[0] = new FluidStack(2000, FluidType.BIOGAS);
break;
@ -2228,6 +2231,9 @@ public class MachineRecipes {
case BP_BIOFUEL:
output[0] = new FluidStack(1000, FluidType.BIOFUEL);
break;
case LPG:
output[0] = new FluidStack(1000, FluidType.LPG);
break;
case UF6:
output[0] = new FluidStack(900, FluidType.UF6);
break;