Skip to content

Commit

Permalink
Fixed CreateAttributeRelation not having rel for default and none attr
Browse files Browse the repository at this point in the history
  • Loading branch information
squaresmile committed Sep 24, 2024
1 parent 746c0df commit a7037bd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion WizardParser/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ public static List<ClassRelation> CreateClassRelation(JObject classRelation, Lis
}
public static List<AttributeRelation> CreateAttributeRelation(JObject attributeRelation, Dictionary<string, int> attributeId)
{
var keys = attributeId.Keys.ToList().Except(new string[] { "void" });
var keys = attributeId.Keys.ToList().Except(new string[] { "void", "none", "default" });
var tempList = new List<AttributeRelation>();

foreach (var attackerAttribute in keys)
Expand Down

0 comments on commit a7037bd

Please sign in to comment.