Skip to content

Commit

Permalink
Merge pull request #4 from BobDoleOwndU/master
Browse files Browse the repository at this point in the history
Fixed a bug in FoxEntityLink that added NameInArchiveLiteral twice
  • Loading branch information
Atvaark committed Aug 28, 2020
2 parents 790457b + 6f18404 commit 64bfc82
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion FoxTool/Fox/Types/Structs/FoxEntityLink.cs
Expand Up @@ -54,7 +54,7 @@ public override void CalculateHashes()
public override void CollectStringLookupLiterals(List<FoxStringLookupLiteral> literals)
{
literals.Add(new FoxStringLookupLiteral(PackagePathLiteral));
literals.Add(new FoxStringLookupLiteral(NameInArchiveLiteral));
literals.Add(new FoxStringLookupLiteral(ArchivePathLiteral));
literals.Add(new FoxStringLookupLiteral(NameInArchiveLiteral));
}

Expand Down

0 comments on commit 64bfc82

Please sign in to comment.