Skip to content

Commit b0b7f7b

Browse files
committed
fix checksum
1 parent 581a44b commit b0b7f7b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • CathodeLib/Scripts/CATHODE/CommandsPAK/Components

CathodeLib/Scripts/CATHODE/CommandsPAK/Components/Entity.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -799,7 +799,7 @@ public ShortGuid GeneratePathHash()
799799
if (path.Length == 0) return ShortGuid.Invalid;
800800
EnsureFinalIsEmpty();
801801

802-
ShortGuid checksumGenerated = path[path.Length - 1];
802+
ShortGuid checksumGenerated = path[path.Length - 2];
803803
for (int i = path.Length - 2; i >= 1; i--)
804804
{
805805
checksumGenerated = checksumGenerated.Combine(path[i - 1]);

0 commit comments

Comments
 (0)