Fixing generation errors

Update rom for multiworld/vanilla sewers problems
This commit is contained in:
aerinon
2023-08-09 15:33:11 -06:00
parent f906633c2b
commit 1985139cb5
4 changed files with 5 additions and 5 deletions

View File

@@ -118,7 +118,7 @@ class RuleFactory(object):
rule_lambda = r.rule_lambda
else:
rule_lambda = and_rule(rule_lambda, r.rule_lambda)
rule.rule_lambda = rule_lambda
rule.rule_lambda = rule_lambda if rule_lambda else lambda state: True
return rule
@staticmethod
@@ -142,7 +142,7 @@ class RuleFactory(object):
rule_lambda = r.rule_lambda
else:
rule_lambda = or_rule(rule_lambda, r.rule_lambda)
rule.rule_lambda = rule_lambda
rule.rule_lambda = rule_lambda if rule_lambda else lambda state: True
return rule
@staticmethod