From 5f89d4f1093600ccf2cc80e5e2204ee2a7496d4c Mon Sep 17 00:00:00 2001 From: Klemek Date: Wed, 5 Nov 2025 09:46:23 +0100 Subject: [PATCH] fix: mix table init --- index.html | 5 +---- main.js | 2 +- 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/index.html b/index.html index 21229e3..161a27f 100644 --- a/index.html +++ b/index.html @@ -65,10 +65,7 @@ None - Maybe - Some - A lot - Mostly + ~{{config.mix}}% diff --git a/main.js b/main.js index e651544..389a1cc 100644 --- a/main.js +++ b/main.js @@ -93,7 +93,7 @@ class TableGenerator { this.minMixScore = 0; this.maxMixScore = 0; this.lastIndexes = []; - this.mixTable = this.initMixTable(); + this.mixTable = this.initMixTable(seed); } initIndexScores() {