Tools/MeshExtractor: Fixed a crash and bad data for liquids

This commit is contained in:
Subv
2012-09-29 06:24:35 -05:00
parent 6b23d2f771
commit 3bea28e62c
3 changed files with 5 additions and 1 deletions
+1 -1
View File
@@ -31,7 +31,7 @@ void MapChunk::GenerateTriangles()
if (Adt->_LiquidHandler && !Adt->_LiquidHandler->MCNKData.empty())
{
MCNKLiquidData& data = Adt->_LiquidHandler->MCNKData[Index];
uint32 maxHeight = std::max(
float maxHeight = std::max(
std::max(
std::max(std::max(Vertices[topLeft].z, Vertices[topRight].z), Vertices[bottomLeft].z),
Vertices[bottomRight].z), Vertices[center].z);