File tree Expand file tree Collapse file tree
src/main/java/com/github/gtexpert/core Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11package com .github .gtexpert .core .api .capability .impl ;
22
3- import com .github .gtexpert .core .common .metatileentities .multi .MetaTileEntityVoidFluidPump ;
3+ import net .minecraft .nbt .NBTTagCompound ;
4+ import net .minecraft .network .PacketBuffer ;
5+ import net .minecraftforge .fluids .Fluid ;
6+ import net .minecraftforge .fluids .FluidStack ;
7+
8+ import org .jetbrains .annotations .NotNull ;
49
510import gregtech .api .GTValues ;
611import gregtech .api .capability .GregtechDataCodes ;
712import gregtech .api .metatileentity .MetaTileEntity ;
813import gregtech .api .worldgen .bedrockFluids .BedrockFluidVeinHandler ;
914import gregtech .common .ConfigHolder ;
10- import gregtech .common .metatileentities .multi .electric .MetaTileEntityFluidDrill ;
1115
12- import net .minecraft .nbt .NBTTagCompound ;
13- import net .minecraft .network .PacketBuffer ;
14- import net .minecraftforge .fluids .Fluid ;
15- import net .minecraftforge .fluids .FluidStack ;
16-
17- import org .jetbrains .annotations .NotNull ;
16+ import com .github .gtexpert .core .common .metatileentities .multi .MetaTileEntityVoidFluidPump ;
1817
1918public class VoidFluidPumpLogic {
2019
@@ -232,7 +231,6 @@ public double getProgressPercent() {
232231 return getProgressTime () * 1.0 / MAX_PROGRESS ;
233232 }
234233
235-
236234 /**
237235 *
238236 * @return whether the inventory is full
Original file line number Diff line number Diff line change @@ -57,14 +57,14 @@ public static class ModpackFlag {
5757 @ Config .Comment ({ "The base voltage of Void Fluid Pump" ,
5858 "Minimum: 0 (ULV)" ,
5959 "Maximum: 9 (UHV)" ,
60- "Default: 4 (EV)" })
60+ "Default: 4 (EV)" })
6161 @ Config .RangeInt (min = 0 , max = 9 )
6262 public int vfpBaseVoltage = 4 ;
6363
6464 @ Config .Comment ({ "The base of Production Rate of Void Fluid Pump" ,
6565 "Total Production Multiplier = Base Production Rate * (Current Voltage - Base Voltage)" ,
6666 "Minimum: 1" ,
67- "Default: 16" })
67+ "Default: 16" })
6868 @ Config .RangeInt (min = 1 )
6969 public int vfpBaseProductionRate = 16 ;
7070 }
Original file line number Diff line number Diff line change @@ -883,7 +883,8 @@ private static void blocks() {
883883 .input (MetaItems .SENSOR_UV , 4 )
884884 .duration (600 ).EUt (VA [UV ])
885885 .stationResearch (
886- b -> b .researchStack (MetaTileEntities .ADVANCED_FLUID_DRILLING_RIG .getStackForm ()).CWUt (96 ).EUt (VA [UV ]));
886+ b -> b .researchStack (MetaTileEntities .ADVANCED_FLUID_DRILLING_RIG .getStackForm ()).CWUt (96 )
887+ .EUt (VA [UV ]));
887888 } else {
888889 builderVFP .input (circuit , MarkerMaterials .Tier .ZPM , 4 )
889890 .input (MetaItems .ELECTRIC_MOTOR_ZPM , 4 )
@@ -895,7 +896,8 @@ private static void blocks() {
895896 .input (MetaItems .SENSOR_ZPM , 4 )
896897 .duration (600 ).EUt (VA [ZPM ])
897898 .stationResearch (
898- b -> b .researchStack (MetaTileEntities .ADVANCED_FLUID_DRILLING_RIG .getStackForm ()).CWUt (64 ).EUt (VA [ZPM ]));
899+ b -> b .researchStack (MetaTileEntities .ADVANCED_FLUID_DRILLING_RIG .getStackForm ()).CWUt (64 )
900+ .EUt (VA [ZPM ]));
899901 }
900902 builderVFP .input (MetaItems .FLUID_FILTER )
901903 .input (gear , Materials .NaquadahAlloy , 4 )
You can’t perform that action at this time.
0 commit comments