Fix turtle block placing failing

This commit is contained in:
SquidDev 2019-06-02 17:25:49 +01:00
parent 7467b7f88a
commit 401bbf2e6a
1 changed files with 1 additions and 4 deletions

View File

@ -17,7 +17,6 @@
import dan200.computercraft.shared.util.DropConsumer;
import dan200.computercraft.shared.util.InventoryUtil;
import dan200.computercraft.shared.util.WorldUtil;
import net.minecraft.block.Block;
import net.minecraft.block.state.IBlockState;
import net.minecraft.entity.Entity;
import net.minecraft.entity.EntityLivingBase;
@ -299,7 +298,6 @@ private static boolean canDeployOnBlock( @Nonnull BlockItemUseContext context, I
}
IBlockState state = world.getBlockState( position );
Block block = state.getBlock();
boolean replaceable = state.isReplaceable( context );
if( !allowReplaceable && replaceable ) return false;
@ -317,8 +315,7 @@ private static boolean canDeployOnBlock( @Nonnull BlockItemUseContext context, I
}
}
// Check the block is solid or liquid
return block.isCollidable( state );
return context.canPlace();
}
@Nonnull