We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6f2e1c2 commit 6896d63Copy full SHA for 6896d63
worlds/stardew_valley/stardew_rule/base.py
@@ -293,7 +293,7 @@ def __repr__(self):
293
294
def __eq__(self, other):
295
return (isinstance(other, type(self)) and self.combinable_rules == other.combinable_rules and
296
- self.simplification_state.original_simplifiable_rules == self.simplification_state.original_simplifiable_rules)
+ self.simplification_state.original_simplifiable_rules == other.simplification_state.original_simplifiable_rules)
297
298
def __hash__(self):
299
if len(self.combinable_rules) + len(self.simplification_state.original_simplifiable_rules) > 5:
0 commit comments