Fixes #327
This commit is contained in:
parent
7139a62102
commit
692c89a6a0
1 changed files with 1 additions and 3 deletions
|
@ -1,12 +1,10 @@
|
|||
package techreborn.blocks.fluid;
|
||||
|
||||
import net.minecraft.client.resources.model.ModelResourceLocation;
|
||||
import net.minecraft.item.ItemStack;
|
||||
import net.minecraft.util.ResourceLocation;
|
||||
import net.minecraftforge.fluids.Fluid;
|
||||
|
||||
public class TechRebornFluid extends Fluid {
|
||||
public TechRebornFluid(String fluidName) {
|
||||
super(fluidName, new ModelResourceLocation("techreborn:textures/block/" + fluidName + "_flowing"), new ModelResourceLocation("techreborn:textures/block/" + fluidName + "_flowing"));
|
||||
super(fluidName, new ResourceLocation("techreborn:textures/block/" + fluidName + "_flowing"), new ResourceLocation("techreborn:textures/block/" + fluidName + "_flowing"));
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue