Fix comparison issue which broke graphs in some cases

This commit is contained in:
DarkPhoenix
2024-11-27 23:25:49 +01:00
parent 7edf1f93cb
commit 08d4e852d3

View File

@@ -176,7 +176,7 @@ class DmgTypes:
floatUnerr(self._thermal) == floatUnerr(other._thermal) and
floatUnerr(self._kinetic) == floatUnerr(other._kinetic) and
floatUnerr(self._explosive) == floatUnerr(other._explosive) and
sorted(self._breachers) == sorted(other._breachers),
sorted(self._breachers) == sorted(other._breachers) and
self.profile == other.profile)
def __add__(self, other):