Added first smelting recipes and drops from blocks... going on!

This commit is contained in:
Robert Sosnitzka
2016-05-03 01:13:05 +02:00
parent 619717b89e
commit 56422c06b1
6 changed files with 58 additions and 1 deletions

View File

@@ -1,11 +1,13 @@
package blocks;
import blocks.category.BasicBlockGround;
import net.minecraft.block.SoundType;
import net.minecraft.block.material.Material;
public class BlockRottenGround extends BasicBlockGround {
public BlockRottenGround() {
super("rotten_ground", Material.GROUND, 2.0f, 2.0f,0);
this.setSoundType(SoundType.GROUND);
}
}