Fix error with chunk height map updates

Ref #185
This commit is contained in:
Drew DeVault 2015-07-07 14:54:08 -06:00
parent f7bd7a109d
commit 1f0c1a6481

View File

@ -145,6 +145,7 @@ namespace TrueCraft.Core.World
SetHeight((byte)coordinates.X, (byte)coordinates.Z, coordinates.Y);
if (coordinates.Y > MaxHeight)
MaxHeight = coordinates.Y;
break;
}
}
}