Fixed and balanced hardness of blocks and put in harvest levels.

This commit is contained in:
Robert Sosnitzka
2016-05-02 17:24:08 +02:00
parent 3752640edd
commit e6ae3f74f6
26 changed files with 48 additions and 30 deletions

View File

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