remove double basicr requirement

add seed change for anon
This commit is contained in:
AUTOMATIC
2022-09-07 01:44:44 +03:00
parent a8504157a0
commit a1743e4518
5 changed files with 8 additions and 6 deletions

View File

@@ -108,7 +108,7 @@ class Script(scripts.Script):
return [x_type, x_values, y_type, y_values]
def run(self, p, x_type, x_values, y_type, y_values):
p.seed = int(random.randrange(4294967294) if p.seed == -1 else p.seed)
p.seed = modules.processing.set_seed(p.seed)
p.batch_size = 1
p.batch_count = 1