Skip to content

Commit

Permalink
Updated Project Info
Browse files Browse the repository at this point in the history
Fixed Commented out line in World.cs
  • Loading branch information
mjungnickel18 committed Jun 7, 2020
1 parent 7c8adc4 commit 6273b53
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
7 changes: 2 additions & 5 deletions Maploader/World/World.cs
Original file line number Diff line number Diff line change
Expand Up @@ -513,10 +513,7 @@ public ChunkData GetChunkData(GroupedChunkSubKeys groupedChunkSubKeys)
return ret;
}

public object GetChunkData(LevelDbWorldKey2 groupedChunkSubKeys)
{
throw new NotImplementedException();
}


public ChunkData GetChunkData(IGrouping<ulong, LevelDbWorldKey2> groupedChunkSubKeys)
{
Expand All @@ -543,7 +540,7 @@ public ChunkData GetChunkData(IGrouping<ulong, LevelDbWorldKey2> groupedChunkSub
Data = data,
DataLength = (int)length,
Key = key.Key,
// Crc32 = Force.Crc32.Crc32CAlgorithm.Compute(data, 0, (int)length),
Crc32 = Force.Crc32.Crc32CAlgorithm.Compute(data, 0, (int)length),
};
ret.SubChunks.Add(subChunkData);
}
Expand Down
2 changes: 2 additions & 0 deletions PapyrusCs/PapyrusCs.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@
<AssemblyVersion>0.5.0.0</AssemblyVersion>
<FileVersion>0.5.0.0</FileVersion>
<Version>0.5.0</Version>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<PackageProjectUrl>https://github.com/mjungnickel18</PackageProjectUrl>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
Expand Down

0 comments on commit 6273b53

Please sign in to comment.