Reverts part of PR #2851 that required OTR regen. (#2856)

This commit is contained in:
Christopher Leggett
2023-05-07 22:54:54 -04:00
committed by GitHub
parent f5aacaf38b
commit b166bdd3fc
2 changed files with 2 additions and 2 deletions
@@ -77,8 +77,8 @@ void Ship::CollisionHeaderFactoryV0::ParseFileBinary(std::shared_ptr<BinaryReade
for (uint32_t i = 0; i < collisionHeader->surfaceTypesCount; i++) {
SurfaceType surfaceType;
surfaceType.data[0] = reader->ReadUInt32();
surfaceType.data[1] = reader->ReadUInt32();
surfaceType.data[0] = reader->ReadUInt32();
collisionHeader->surfaceTypes.push_back(surfaceType);
}