summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--cli/app/search/live.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/app/search/live.py b/cli/app/search/live.py
index 389ece4..7ddef61 100644
--- a/cli/app/search/live.py
+++ b/cli/app/search/live.py
@@ -120,7 +120,7 @@ class SinParam:
# - check if we've done one full orbital period
# - check if the noise is done transitioning
if self.lerp and self.t >= self.orbit_speed.value and self.noise.n.value == 0 or self.noise.n.value == 1:
- self.noise.randomize()
+ self.noise.switch()
self.t = 0
class LerpParam: