From 0934e5c71143b28dab97b03791efb02a58e6cb25 Mon Sep 17 00:00:00 2001 From: NewSoupVi <57900059+NewSoupVi@users.noreply.github.com> Date: Mon, 26 Jun 2023 00:20:28 +0200 Subject: [PATCH] The Witness: Fixed seeds not generating with vanilla logic (#1895) Yikes, I swear I ran like 15 generations with a random yaml, I got so unlucky --- worlds/witness/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/worlds/witness/utils.py b/worlds/witness/utils.py index c5343696..0f02bd29 100644 --- a/worlds/witness/utils.py +++ b/worlds/witness/utils.py @@ -252,5 +252,5 @@ def get_logic_file(filepath: str): if filepath == "WitnessLogicExpert.txt": return get_sigma_expert_logic() if filepath == "WitnessLogicVanilla.txt": - return get_vanilla_logic + return get_vanilla_logic() return get_adjustment_file(filepath)