From c02a890aba01461eaa6bf6258f64fe2260e1672a Mon Sep 17 00:00:00 2001 From: compiling <8335770+compiling@users.noreply.github.com> Date: Tue, 1 Dec 2020 18:29:38 +1100 Subject: [PATCH] Fix logs indicating pots are shuffled when they aren't. --- Main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Main.py b/Main.py index dd3f6cd2..cf33e7bf 100644 --- a/Main.py +++ b/Main.py @@ -114,7 +114,7 @@ def main(args, seed=None, fish=None): create_dungeons(world, player) adjust_locations(world, player) - if any(world.potshuffle): + if any(world.potshuffle.values()): logger.info(world.fish.translate("cli", "cli", "shuffling.pots")) for player in range(1, world.players + 1): if world.potshuffle[player]: