Slider can break normal dungeon stone.

This commit is contained in:
KingPhygieBoo 2017-12-26 19:52:48 -06:00
parent fa26c8d927
commit 324f319ab5

View file

@ -390,7 +390,7 @@ public class EntitySlider extends EntityFlying implements IAetherBoss
{
IBlockState state = this.worldObj.getBlockState(pos);
if(state.getBlock() == Blocks.AIR || state.getBlock() instanceof BlockDungeonBase)
if(state.getBlock() == Blocks.AIR || state.getBlock() == BlocksAether.locked_dungeon_block)
{
return;
}