Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrendon Murphy <meta.androcto1@gmail.com>2011-12-11 04:36:39 +0400
committerBrendon Murphy <meta.androcto1@gmail.com>2011-12-11 04:36:39 +0400
commit502b3ba6e1650b00ef38145382f4a8451cca98ca (patch)
tree54180e5462d85517437dca663bc221384e6e5a73 /add_mesh_extra_objects/__init__.py
parent7b3950ad951e17890074c32f4bd09ba544e694fa (diff)
quick fix for add_mesh_pyramid.py not registering in menu
Diffstat (limited to 'add_mesh_extra_objects/__init__.py')
-rw-r--r--add_mesh_extra_objects/__init__.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/add_mesh_extra_objects/__init__.py b/add_mesh_extra_objects/__init__.py
index 34ecd162..a04bd8b0 100644
--- a/add_mesh_extra_objects/__init__.py
+++ b/add_mesh_extra_objects/__init__.py
@@ -22,8 +22,8 @@ bl_info = {
"name": "Extra Objects",
"author": "Multiple Authors",
"version": (0, 3),
- "blender": (2, 5, 9),
- "api": 40638,
+ "blender": (2, 6, 1),
+ "api": 42524,
"location": "View3D > Add > Mesh > Extra Objects",
"description": "Add extra object types",
"warning": "",
@@ -74,7 +74,7 @@ class INFO_MT_mesh_extras_add(bpy.types.Menu):
text="Polysphere")
layout.operator("mesh.primitive_supertoroid_add",
text="Supertoroid")
- layout.operator("mesh.primative_step_pyramid_add",
+ layout.operator("mesh.primitive_steppyramid_add",
text="Pyramid")
class INFO_MT_mesh_gemstones_add(bpy.types.Menu):