diff --git a/Dota2GSI/Nodes/Node.cs b/Dota2GSI/Nodes/Node.cs index ec3a50f..4b6dcd7 100644 --- a/Dota2GSI/Nodes/Node.cs +++ b/Dota2GSI/Nodes/Node.cs @@ -233,6 +233,7 @@ public override bool Equals(object obj) } return obj is Node other && + _ParsedData != null && _ParsedData.Equals(other._ParsedData) && _successfully_retrieved_any_value.Equals(other._successfully_retrieved_any_value); }