Fix missing textures on some blocks

This commit is contained in:
modmuss50 2016-12-14 09:41:11 +00:00
parent ccdb5c0761
commit 4f8bfcb2df
4 changed files with 21 additions and 41 deletions

View file

@ -1,26 +1,21 @@
package techreborn.blocks.generator;
import net.minecraft.block.material.Material;
import net.minecraft.tileentity.TileEntity;
import net.minecraft.world.World;
import reborncore.RebornCore;
import reborncore.common.BaseTileBlock;
import reborncore.common.blocks.BlockMachineBase;
import techreborn.client.TechRebornCreativeTab;
import techreborn.tiles.generator.TileWindMill;
/**
* Created by modmuss50 on 25/02/2016.
*/
public class BlockWindMill extends BaseTileBlock {
private final String prefix = "techreborn:blocks/machine/generators/";
public class BlockWindMill extends BlockMachineBase {
public BlockWindMill() {
super(Material.IRON);
super(false);
setUnlocalizedName("techreborn.windmill");
setCreativeTab(TechRebornCreativeTab.instance);
setHardness(2.0F);
RebornCore.jsonDestroyer.registerObject(this);
}
@Override