Now using new Forge Dynamic buckets, and prep for new update

This commit is contained in:
modmuss50 2016-02-02 21:05:42 +00:00
parent e509d42e36
commit 8ec95f9119
4 changed files with 43 additions and 33 deletions

View file

@ -5,6 +5,6 @@ import net.minecraftforge.fluids.Fluid;
public class TechRebornFluid extends Fluid {
public TechRebornFluid(String fluidName) {
super(fluidName, new ResourceLocation("techreborn:textures/block/" + fluidName + "_flowing"), new ResourceLocation("techreborn:textures/block/" + fluidName + "_flowing"));
super(fluidName, new ResourceLocation("techreborn:blocks/fluids/" + fluidName.replaceFirst("fluid", "") + "_flowing"), new ResourceLocation("techreborn:blocks/fluids/" + fluidName.replaceFirst("fluid", "") + "_flowing"));
}
}