From 6a4dc849d2e681bb17d511f6e3e599260188fd08 Mon Sep 17 00:00:00 2001
From: Andrew Hale <TrumanBlending@gmail.com>
Date: Sun, 31 Jul 2011 09:33:04 +0000
Subject: [PATCH] Fixed the random seed property to be an int not a float

---
 add_curve_ivygen.py | 9 ++++-----
 1 file changed, 4 insertions(+), 5 deletions(-)

diff --git a/add_curve_ivygen.py b/add_curve_ivygen.py
index 54ac139f9..4a73ee0f1 100644
--- a/add_curve_ivygen.py
+++ b/add_curve_ivygen.py
@@ -516,11 +516,10 @@ class IvyGen(bpy.types.Operator):
                     min=0.0,
                     soft_max=2.0,
                     precision=2)
-    randomSeed = FloatProperty(name="Random Seed",
+    randomSeed = IntProperty(name="Random Seed",
                     description="The seed governing random generation.",
                     default=0,
-                    min=0.0,
-                    soft_max=10)
+                    min=0)
     maxTime = FloatProperty(name="Maximum Time",
                     description=("The maximum time to run the generation for "
                                  "in seconds generation (0.0 = Disabled)"),
@@ -557,7 +556,7 @@ class IvyGen(bpy.types.Operator):
         seedPoint = context.scene.cursor_location
 
         # Fix the random seed
-        rand_seed(int(self.randomSeed))
+        rand_seed(self.randomSeed)
 
         # Make the new ivy
         IVY = Ivy(**self.as_keywords(ignore=('randomSeed', 'growLeaves',
@@ -695,4 +694,4 @@ def unregister():
 
 
 if __name__ == "__main__":
-    register()
+    register()
\ No newline at end of file
-- 
GitLab