**System Information**
Windows 8
Linux Mint 14 Nadia
**Blender Version**
Broken: 2.70.5
Worked: (optional)
**Short description of error**
In the user interface, when we add a spline ik constraint to a bone, we have the limit of 255 bones.
But, if we look in the source code, file 'source/blender/makesrna/intern/rna_constraint.c', function 'static void rna_def_constraint_spline_ik(BlenderRNA *brna)', lines '2113 to 2119', we can see a declaration of a PROP_INT "prop = RNA_def_property(srna, "chain_count", PROP_INT, PROP_NONE);" and the limit in the "RNA_def_property_range(prop, 1, 255);".
I need to make a chain with more than 900 bones, and I really don't understand why it is limited to 255 whether the prop is an int.
Would be possible to put a 4096 (or 16K, 32K) instead of 255?
**Exact steps for others to reproduce the error**
Add an armature, go to pose mode, select the bone, go to Bone constraints, add a "Spline IK" constraint and try to put a value greater than 255 in the chain length.