From 362f91160b243453578633e3f9af67ce40179d8c Mon Sep 17 00:00:00 2001 From: Ruben Beltran del Rio Date: Tue, 7 May 2024 22:37:27 +0200 Subject: Make 3D --- lib/components/triple_frequency.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'lib/components/triple_frequency.js') diff --git a/lib/components/triple_frequency.js b/lib/components/triple_frequency.js index aa768e3..1f118b9 100644 --- a/lib/components/triple_frequency.js +++ b/lib/components/triple_frequency.js @@ -5,8 +5,8 @@ export default class TripleFrequency extends Component { super(config); - this.a = Math.random(); - this.b = Math.random(); - this.c = Math.random(); + this.a = this.a || Math.random(); + this.b = this.b || Math.random(); + this.c = this.c || Math.random(); } }; -- cgit