hello, I have been watching ScratchForFuns new liquid tutorial and I have tried to follow the exact same as him i even changed my variables to match and i have one error i don't under stand a semi colon that's erred
I will have @ sign on the line the errors on
|package Sandboxking27.LogicCraft.fluid;
|
| import net.minecraft.block.Block;
| import net.minecraft.block.material.Material;
| import net.minecraftforge.fluids.Fluid;
|
| public class Fluids {
| //liquids registery
| public static Block blockIronFluid;
|
| //fluid registery
| public static Fluid fluidIron;
|
|
| //material registry
| public static Material materialFluidIron;
|
| // fluid ids
@ public static final int idFluidIron = 240; < the error is this semicolon
|
| fluidIron = new Fluid("fluid").setBlockID(idFluidIron);
| FluidRegistry.registerFluid(fluidIron);
|
| materialFluidIron = new MaterialLiquid(MapColor.ironColor);
|
|
| blockIronFluid = new
| BlockIronFluid(dFluidIron).setUnlocalizedName("fluid_iron").setTexture("");
| }
| }