Merge pull request #610 from TheJulianJES/Sound-Material-Fix

Changed Sound and Material, also aligned some to vanilla
This commit is contained in:
thatsIch 2014-12-21 13:44:03 +01:00
commit 9bd33b58e1
2 changed files with 3 additions and 4 deletions

View file

@ -113,12 +113,12 @@ public class AEBaseBlock extends BlockContainer implements IAEFeature
{
super( mat );
if ( mat == AEGlassMaterial.instance )
setStepSound( Block.soundTypeGlass );
else if ( mat == Material.glass )
if ( mat == AEGlassMaterial.instance || mat == Material.glass )
setStepSound( Block.soundTypeGlass );
else if ( mat == Material.rock )
setStepSound( Block.soundTypeStone );
else if ( mat == Material.wood )
setStepSound( Block.soundTypeWood );
else
setStepSound( Block.soundTypeMetal );

View file

@ -43,7 +43,6 @@ public class BlockCrank extends AEBaseBlock
public BlockCrank() {
super( BlockCrank.class, Material.wood );
setStepSound( Block.soundTypeWood );
setFeature( EnumSet.of( AEFeature.GrindStone ) );
setTileEntity( TileCrank.class );
setLightOpacity( 0 );