From b6c85375c46ebd82785a0d5525c84570a0a7c260 Mon Sep 17 00:00:00 2001 From: Fabian Dill Date: Wed, 10 Jun 2020 03:24:19 +0200 Subject: [PATCH] actually make minorglitches usable --- Rules.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Rules.py b/Rules.py index 420f2d35..88603581 100644 --- a/Rules.py +++ b/Rules.py @@ -39,6 +39,8 @@ def set_rules(world, player): overworld_glitches_rules(world, player) elif world.logic[player] == 'minorglitches': logging.getLogger('').info('Minor Glitches may be buggy still. No guarantee for proper logic checks.') + no_glitches_rules(world, player) + fake_flipper_rules(world, player) else: raise NotImplementedError('Not implemented yet')