From e3e92f005d2782fb0f8160af3ec09bcf99222b95 Mon Sep 17 00:00:00 2001 From: Miraculous Ladybugreport <3642643+PeyTy@users.noreply.github.com> Date: Tue, 12 Mar 2024 05:11:33 +0200 Subject: [PATCH] [Main] Transfer options to generators --- source/main.hexa | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/source/main.hexa b/source/main.hexa index 939f1da..59a8c87 100644 --- a/source/main.hexa +++ b/source/main.hexa @@ -763,7 +763,8 @@ class Main { console.log(quote(hint.toString())) } - let outs = generator.perform(normal, target) + let options = input.targets[targetIndex].options + let outs = generator.perform(normal, target, options) #if times console.log("[Generator finished in \(Date.now() - beginGenerator) ms]")