Stone Not Rock.

This commit is contained in:
AlgorithmX2
2014-02-28 09:27:04 -06:00
parent d32137a336
commit f1da7b1970
3 changed files with 6 additions and 6 deletions
+29
View File
@@ -0,0 +1,29 @@
package appeng.block.solids;
import java.util.EnumSet;
import net.minecraft.block.material.Material;
import net.minecraft.world.IBlockAccess;
import appeng.api.util.IOrientable;
import appeng.api.util.IOrientableBlock;
import appeng.block.AEBaseBlock;
import appeng.core.features.AEFeature;
import appeng.helpers.LocationRotation;
public class BlockSkyStone extends AEBaseBlock implements IOrientableBlock
{
public BlockSkyStone() {
super( BlockSkyStone.class, Material.rock );
setfeature( EnumSet.of( AEFeature.Core ) );
setHardness( 50 );
blockResistance = 150.0f;
}
@Override
public IOrientable getOrientable(final IBlockAccess w, final int x, final int y, final int z)
{
return new LocationRotation( w, x, y, z );
}
}