diff --git a/source/blender/python/api2_2x/Modifier.c b/source/blender/python/api2_2x/Modifier.c index a1b052eb674..704daf306e2 100644 --- a/source/blender/python/api2_2x/Modifier.c +++ b/source/blender/python/api2_2x/Modifier.c @@ -776,8 +776,6 @@ static PyObject *array_getter( BPy_Modifier * self, int type ) return PyFloat_FromDouble( md->length ); else if( type == EXPP_MOD_MERGE_DIST ) return PyFloat_FromDouble( md->merge_dist ); - else if( type == EXPP_MOD_MERGE_DIST ) - return PyFloat_FromDouble( md->merge_dist ); else if( type == EXPP_MOD_OFFSET_VEC) return newVectorObject( md->offset, 3, Py_NEW ); else if( type == EXPP_MOD_SCALE_VEC) @@ -1505,6 +1503,8 @@ static PyObject *M_Modifier_TypeDict( void ) PyInt_FromLong( eModifierType_Smooth ) ); PyConstant_Insert( d, "CAST", PyInt_FromLong( eModifierType_Cast ) ); + PyConstant_Insert( d, "DISPLACE", + PyInt_FromLong( eModifierType_Displace ) ); } return S; } diff --git a/source/blender/python/api2_2x/doc/Modifier.py b/source/blender/python/api2_2x/doc/Modifier.py index 0c53f470b63..1d7d2e121c9 100644 --- a/source/blender/python/api2_2x/doc/Modifier.py +++ b/source/blender/python/api2_2x/doc/Modifier.py @@ -49,6 +49,7 @@ Example:: @var Types: Constant Modifier dict used for L{ModSeq.append} to a modifier sequence and comparing with L{Modifier.type}: - ARMATURE - type value for Armature modifiers + - ARRAY - type value for Array modifiers - BOOLEAN - type value for Boolean modifiers - BUILD - type value for Build modifiers - CURVE - type value for Curve modifiers