blob: d5902044a58358241a57d41c292a7d102e498df3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
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);
}
}
|