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:
authorJesse Kaukonen <jesse.kaukonen@gmail.com>2011-05-04 20:21:10 +0400
committerJesse Kaukonen <jesse.kaukonen@gmail.com>2011-05-04 20:21:10 +0400
commit9a3d79800361f1a05f3bb6b5fe4b2e9e031a15aa (patch)
treea61418e753aa7e1fdc3430ce404ad71136c0b121
parentd7b87f2e2b8b9d98a2a8d83c5af93b9210622d39 (diff)
Removed an obsolete check for particle systems
-rw-r--r--render_renderfarmfi.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/render_renderfarmfi.py b/render_renderfarmfi.py
index f950db2b..8ed14c10 100644
--- a/render_renderfarmfi.py
+++ b/render_renderfarmfi.py
@@ -19,9 +19,9 @@
bl_info = {
"name": "Renderfarm.fi",
"author": "Nathan Letwory <nathan@letworyinteractive.com>, Jesse Kaukonen <jesse.kaukonen@gmail.com>",
- "version": (7,),
+ "version": (8,),
"blender": (2, 5, 7),
- "api": 36212,
+ "api": 36487,
"location": "Render > Engine > Renderfarm.fi",
"description": "Send .blend as session to http://www.renderfarm.fi to render",
"warning": "",
@@ -809,7 +809,7 @@ class ORE_PrepareOp(bpy.types.Operator):
return hasSimulation(bpy.types.SoftBodyModifier)
def hasUnsupportedSimulation():
- return hasSoftbodySimulation() or hasCollisionSimulation() or hasClothSimulation() or hasSmokeSimulation() or hasFluidSimulation() or hasParticleSystem()
+ return hasSoftbodySimulation() or hasCollisionSimulation() or hasClothSimulation() or hasSmokeSimulation() or hasFluidSimulation()
def isFilterNode(node):
t = type(node)