aether-legacy/src/main/java/com/legacy/aether/server/blocks/natural/ore/BlockGravititeOre.java
Kino fe9e09917f v1.3 bug fixes!
Completely not worth having it all in a bunch however I was in a rush to
get this done so apologies for not separating the commits
2017-01-19 23:43:34 -05:00

19 lines
386 B
Java

package com.legacy.aether.server.blocks.natural.ore;
import net.minecraft.block.SoundType;
import net.minecraft.block.material.Material;
import com.legacy.aether.server.blocks.util.BlockFloating;
public class BlockGravititeOre extends BlockFloating
{
public BlockGravititeOre()
{
super(Material.ROCK, false);
this.setHardness(5F);
this.setSoundType(SoundType.STONE);
}
}