Fix comparison issue which broke graphs in some cases
This commit is contained in:
@@ -176,7 +176,7 @@ class DmgTypes:
|
|||||||
floatUnerr(self._thermal) == floatUnerr(other._thermal) and
|
floatUnerr(self._thermal) == floatUnerr(other._thermal) and
|
||||||
floatUnerr(self._kinetic) == floatUnerr(other._kinetic) and
|
floatUnerr(self._kinetic) == floatUnerr(other._kinetic) and
|
||||||
floatUnerr(self._explosive) == floatUnerr(other._explosive) 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)
|
self.profile == other.profile)
|
||||||
|
|
||||||
def __add__(self, other):
|
def __add__(self, other):
|
||||||
|
|||||||
Reference in New Issue
Block a user